Here is my code, I want connect A and C without B. How can I change? Thank you so much!
\documentclass[tikz,
border=5mm]{standalone}
\usetikzlibrary{arrows, chains, positioning, quotes, shapes.geometric}
\usepackage[utf8]{inputenc}
\usepackage{braket}
\usepackage{url}
\usepackage{chemarrow}
\newcommand{\lra}{\ensuremath{\mathrel{%
\mkern1.5mu\textrm{\arro\symbol{71}}%
\mkern-1.1mu\textrm{\arro\symbol{65}}%
}}\xspace}
\usepackage{xspace}
\begin{document}
\begin{tikzpicture}[
node distance = 8mm and 20mm,
start chain = going below,
arrow/.style = {thick,-stealth},
base/.style = {
draw, thick,
minimum width=30mm, minimum height=10mm, align=center,
inner sep=1mm, outer sep=0mm,
on chain, join=by arrow},
decision/.style = {diamond, base,
aspect=1.5, inner xsep=0mm},
process/.style = {rectangle, base},
startstop/.style = {rectangle, rounded corners, base},
]
\node (start) [startstop] {Start};
\node (setup) [process] {Input a specific $n$ };
\node (test) [decision] {is 5?};
\node (acqir) [process,left=of test] {A};
\node (compute) [process] {B};
\node (displace)[process] {C};
\draw [arrow] (test) |- node [near start,right] {Yes} (compute);
\path (test) to["No"] (acqir);
\node (end) [process] {End};
\end{tikzpicture}
\end{document}

