結果

問題 No.1183 コイン遊び
ユーザー ytftytft
提出日時 2022-03-21 13:50:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 451 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 542 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 276,320 KB
最終ジャッジ日時 2024-10-08 20:07:42
合計ジャッジ時間 14,160 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 45 ms
51,584 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 40 ms
52,096 KB
testcase_08 AC 54 ms
59,264 KB
testcase_09 AC 48 ms
59,264 KB
testcase_10 AC 59 ms
67,456 KB
testcase_11 AC 75 ms
83,456 KB
testcase_12 AC 315 ms
202,700 KB
testcase_13 AC 311 ms
190,364 KB
testcase_14 AC 447 ms
252,336 KB
testcase_15 AC 451 ms
276,288 KB
testcase_16 AC 438 ms
275,680 KB
testcase_17 AC 440 ms
275,928 KB
testcase_18 AC 421 ms
276,316 KB
testcase_19 AC 414 ms
276,068 KB
testcase_20 AC 422 ms
276,060 KB
testcase_21 AC 412 ms
276,192 KB
testcase_22 AC 418 ms
275,812 KB
testcase_23 AC 423 ms
275,684 KB
testcase_24 AC 426 ms
275,808 KB
testcase_25 AC 425 ms
276,068 KB
testcase_26 AC 428 ms
276,240 KB
testcase_27 AC 417 ms
275,936 KB
testcase_28 AC 429 ms
275,680 KB
testcase_29 AC 427 ms
275,936 KB
testcase_30 AC 427 ms
276,320 KB
testcase_31 AC 433 ms
276,056 KB
testcase_32 AC 419 ms
275,916 KB
testcase_33 AC 429 ms
275,940 KB
testcase_34 AC 425 ms
275,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,math
input=lambda:sys.stdin.readline().rstrip()
N=int(input())
A=[list(map(int,input().split())) for i in range(2)]
for j in range(2):
	for i in range(N-1,0,-1):
		A[j][i]^=A[j][i-1]
print((sum([A[0][i]^A[1][i] for i in range(N)])+1)//2)
0