#概要
量子コンパイラを作る。
#成果物
#投入したソース。
make 4
in 0 1
out 2 3
and 0 1 3
xor 0 1 2
#出力。
from blueqat import Circuit
print (Circuit(4).h[ : 2].cx[0, 3].cx[1, 3].ccx[0, 1, 2].m[ : ].run(shots = 1000))
#実行結果
Counter({'0101': 272, '1110': 258, '1001': 249, '0000': 221})
以上。