A: Generate state 1\ket{1}

Time Limit: 3 sec

Memory Limit: 512 MiB

Score: 100

Problem Statement

Implement the operation of preparing the state 1\ket{1} from the zero state 0\ket{0} on a quantum circuit qc\mathrm{qc} with 11 qubit.

Constraints

  • Changes in the global phase are ignored.
  • The submitted code must follow the specified format:
from qiskit import QuantumCircuit
 
 
def solve() -> QuantumCircuit:
    qc = QuantumCircuit(1)
    # Write your code here:
 
    return qc

Hints

Open
  • You can apply the quantum gate gg to the ii-th qubit of the quantum circuit qc\mathrm{qc} as follows:
qc.g(i)

Please sign in to submit your answer.