結果

問題 No.1820 NandShift
ユーザー hir355hir355
提出日時 2022-01-21 23:00:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 649 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 63,616 KB
最終ジャッジ日時 2024-05-04 14:20:45
合計ジャッジ時間 2,430 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,968 KB
testcase_01 AC 34 ms
52,344 KB
testcase_02 AC 33 ms
52,352 KB
testcase_03 AC 32 ms
52,352 KB
testcase_04 AC 34 ms
52,736 KB
testcase_05 AC 32 ms
52,096 KB
testcase_06 AC 35 ms
51,840 KB
testcase_07 AC 40 ms
61,568 KB
testcase_08 AC 33 ms
52,224 KB
testcase_09 AC 47 ms
61,312 KB
testcase_10 AC 44 ms
63,232 KB
testcase_11 AC 32 ms
52,352 KB
testcase_12 AC 33 ms
52,480 KB
testcase_13 AC 35 ms
52,864 KB
testcase_14 AC 33 ms
52,480 KB
testcase_15 AC 35 ms
52,864 KB
testcase_16 AC 43 ms
61,568 KB
testcase_17 AC 33 ms
52,736 KB
testcase_18 AC 41 ms
61,376 KB
testcase_19 AC 45 ms
63,616 KB
testcase_20 AC 34 ms
52,480 KB
testcase_21 AC 34 ms
52,864 KB
testcase_22 AC 34 ms
53,120 KB
testcase_23 AC 33 ms
52,608 KB
testcase_24 AC 37 ms
53,504 KB
testcase_25 AC 44 ms
62,976 KB
testcase_26 AC 34 ms
52,864 KB
testcase_27 AC 35 ms
53,376 KB
testcase_28 AC 41 ms
61,824 KB
testcase_29 AC 31 ms
52,480 KB
testcase_30 AC 41 ms
61,056 KB
testcase_31 AC 43 ms
61,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
x = input()[::-1]
a = [input()[::-1] for _ in range(n)]
ans = []
ans.append((2, 1000, 1000, 1000))
ans.append((1, 1, 1000))
ans.append((2, 1, 1000, 1))
for i in range(m):
    if x[i] == '1':
        ans.append((2, 1, 1, 1))
        ans.append((2, 0, 0, 0))
        ans.append((2, 0, 1, 0))
        ans.append((2, 1, 1, 1))
    ans.append((1, 1, 1))
print(len(ans))
for row in ans:
    print(*row)
# a = [0] * 1001
# for row in ans:
#     t, *q = row
#     if t == 1:
#         x, i = q
#         a[x] = a[i] * 2 % (1 << m)
#     else:
#         x, i, j = q
#         a[x] = (1 << m) - (a[i] & a[j]) - 1
# print(a[0])
0