A processor uses a 32-bit instruction format and supports byte-addressable memory access. The ISA of the processor has 150 distinct instructions. The instructions are equally divided into two types, namely R-type and I-type, whose formats are shown below.
R-type Instruction Format:
\begin{center}
\setlength{\tabcolsep}{15pt} % Adjust column spacing
\renewcommand{\arraystretch}{1.5} % Adjust row spacing
\begin{tabular}{|c|c|c|c|c|}
\hline
OPCODE & UNUSED & DST Register & SRC Register1 & SRC Register2
\hline
\end{tabular}
\end{center}
\vspace{0.5cm}
I-type Instruction Format:
\begin{center}
\setlength{\tabcolsep}{15pt} % Adjust column spacing
\renewcommand{\arraystretch}{1.5} % Adjust row spacing
\begin{tabular}{|c|c|c|c|}
\hline
OPCODE & DST Register & SRC Register & \# Immediate Value/Address
\hline
\end{tabular}
\end{center}
In the OPCODE, 1 bit is used to distinguish between I-type and R-type instructions, and the remaining bits indicate the operation. The processor has 50 architectural registers, and all register fields in the instructions are of equal size.
Let \(X\) be the number of bits used to encode the UNUSED field, \(Y\) be the number of bits used to encode the OPCODE field, and \(Z\) be the number of bits used to encode the immediate value/address field. The value of \(X + 2Y + Z\) is ............