結果

問題 No.1820 NandShift
ユーザー 👑 rin204rin204
提出日時 2022-01-23 02:45:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 667 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 64,472 KB
最終ジャッジ日時 2024-11-28 16:12:48
合計ジャッジ時間 2,960 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,516 KB
testcase_01 AC 37 ms
52,708 KB
testcase_02 AC 36 ms
52,344 KB
testcase_03 AC 33 ms
53,912 KB
testcase_04 AC 41 ms
60,764 KB
testcase_05 AC 33 ms
52,872 KB
testcase_06 AC 34 ms
52,884 KB
testcase_07 AC 45 ms
63,164 KB
testcase_08 AC 34 ms
52,080 KB
testcase_09 AC 44 ms
62,312 KB
testcase_10 AC 50 ms
63,404 KB
testcase_11 AC 34 ms
53,372 KB
testcase_12 AC 35 ms
53,380 KB
testcase_13 AC 42 ms
62,576 KB
testcase_14 AC 33 ms
52,964 KB
testcase_15 AC 36 ms
59,412 KB
testcase_16 AC 46 ms
64,472 KB
testcase_17 AC 33 ms
52,848 KB
testcase_18 AC 44 ms
64,432 KB
testcase_19 AC 45 ms
63,900 KB
testcase_20 AC 34 ms
52,820 KB
testcase_21 AC 33 ms
53,160 KB
testcase_22 AC 40 ms
60,352 KB
testcase_23 AC 33 ms
52,832 KB
testcase_24 AC 41 ms
62,064 KB
testcase_25 AC 45 ms
63,224 KB
testcase_26 AC 35 ms
53,216 KB
testcase_27 AC 37 ms
58,948 KB
testcase_28 AC 45 ms
63,364 KB
testcase_29 AC 32 ms
52,344 KB
testcase_30 AC 45 ms
63,548 KB
testcase_31 AC 43 ms
63,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
X = input()
ans = []

def mod(x, i):
    ans.append((1, x, i))
    
def nand(x, i, j):
    ans.append((2, x, i, j))

# B_i <- B_i ^ B_j
def xor(i, j):
    nand(i, i, 10000)
    nand(j, j, 10000)
    nand(i, i, j)
    nand(j, j, 10000)

# B_10000 = 1....1
nand(10000, 10000, 10000)

# B_1000 = 1
nand(1000, 1000, 10000)
mod(1000, 1000)
nand(1000, 1000, 10000)

# B_{1000 + i} = 1 << i
for i in range(1, m):
    nand(1000 + i, 999 + i, 10000)
    nand(1000 + i, 1000 + i, 10000)
    mod(1000 + i, 1000 + i)

X = X[::-1]
for i, x in enumerate(X):
    if x == "1":
        xor(0, 1000 + i)

print(len(ans))
for row in ans:
    print(*row)
0