結果

問題 No.1896 Arrays and XOR Procedure 2
ユーザー prussian_coderprussian_coder
提出日時 2022-04-09 11:16:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 77,616 KB
最終ジャッジ日時 2024-11-29 08:35:42
合計ジャッジ時間 5,180 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,480 KB
testcase_01 AC 39 ms
53,352 KB
testcase_02 AC 37 ms
54,024 KB
testcase_03 AC 61 ms
74,360 KB
testcase_04 AC 66 ms
77,264 KB
testcase_05 AC 66 ms
77,168 KB
testcase_06 AC 60 ms
74,536 KB
testcase_07 AC 69 ms
77,600 KB
testcase_08 AC 70 ms
77,616 KB
testcase_09 AC 66 ms
77,192 KB
testcase_10 AC 68 ms
77,160 KB
testcase_11 AC 67 ms
77,384 KB
testcase_12 AC 69 ms
77,428 KB
testcase_13 AC 66 ms
77,316 KB
testcase_14 AC 70 ms
77,448 KB
testcase_15 AC 67 ms
77,520 KB
testcase_16 AC 67 ms
77,036 KB
testcase_17 AC 65 ms
76,988 KB
testcase_18 AC 60 ms
71,416 KB
testcase_19 AC 48 ms
64,972 KB
testcase_20 AC 63 ms
74,900 KB
testcase_21 AC 48 ms
65,612 KB
testcase_22 AC 68 ms
77,512 KB
testcase_23 AC 71 ms
77,456 KB
testcase_24 AC 67 ms
77,344 KB
testcase_25 AC 63 ms
75,496 KB
testcase_26 AC 67 ms
77,032 KB
testcase_27 AC 69 ms
77,028 KB
testcase_28 AC 59 ms
74,528 KB
testcase_29 AC 60 ms
74,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=[int(x) for x in input().split()]
B=[int(x) for x in input().split()]
d = len(bin(max(max(A),max(B))))-3
dA = [(a>>d)&1 for a in A]
dB = [(a>>d)&1 for a in B]
ans=[]
if sum(dB)==0:
	a = dA.index(1)
	ans.append((2,a+1,1))
	dB[0]=1
	B[0]^=A[a]
b = dB.index(1)	
for i in range(N):
	if dA[i]==1:
		ans.append((1,i+1,b+1))
		dA[i]=0
		A[i]^=B[b]
		
ans.append((1,1,b+1))
A[0]^=B[b]
dA[0]=1
for i in range(N):
	if dB[i]==0:
		ans.append((2,1,i+1))
		dB[i]=1
		B[i]^=A[0]
ans.append((1,1,1))
print(len(ans))
[print(*a) for a in ans]
A[0]^=B[0]
dA[0]=0
0