結果

問題 No.1896 Arrays and XOR Procedure 2
ユーザー hir355hir355
提出日時 2022-04-09 01:30:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-05-06 12:38:34
合計ジャッジ時間 6,268 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 66 ms
72,448 KB
testcase_04 AC 74 ms
77,184 KB
testcase_05 AC 74 ms
76,980 KB
testcase_06 AC 66 ms
72,576 KB
testcase_07 AC 77 ms
76,928 KB
testcase_08 AC 78 ms
76,776 KB
testcase_09 AC 75 ms
77,056 KB
testcase_10 AC 77 ms
77,156 KB
testcase_11 AC 76 ms
76,840 KB
testcase_12 AC 78 ms
76,916 KB
testcase_13 AC 77 ms
77,008 KB
testcase_14 AC 74 ms
74,868 KB
testcase_15 AC 74 ms
74,368 KB
testcase_16 AC 71 ms
74,368 KB
testcase_17 AC 69 ms
74,236 KB
testcase_18 AC 64 ms
69,760 KB
testcase_19 AC 54 ms
64,256 KB
testcase_20 AC 70 ms
73,344 KB
testcase_21 AC 53 ms
64,464 KB
testcase_22 AC 68 ms
73,728 KB
testcase_23 AC 73 ms
73,984 KB
testcase_24 AC 70 ms
74,844 KB
testcase_25 AC 66 ms
73,344 KB
testcase_26 AC 70 ms
74,368 KB
testcase_27 AC 68 ms
73,948 KB
testcase_28 AC 67 ms
72,064 KB
testcase_29 AC 69 ms
73,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
x = max(a)
mi = a.index(x)
bt = -1
while x > 0:
    x >>= 1
    bt += 1
ans = []
for i in range(n):
    if b[i] & (1 << bt):
        continue
    ans.append((2, mi + 1, i + 1))
    b[i] ^= a[mi]
for i in range(n):
    if a[i] & (1 << bt):
        ans.append((1, i + 1, 1))
        a[i] ^= b[0]
print(len(ans))
for row in ans:
    print(*row)
0