結果

問題 No.1183 コイン遊び
ユーザー KudeKude
提出日時 2020-08-27 22:40:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 424 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 473 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 275,140 KB
最終ジャッジ日時 2024-11-08 16:55:08
合計ジャッジ時間 13,251 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 42 ms
51,840 KB
testcase_06 AC 43 ms
51,584 KB
testcase_07 AC 42 ms
51,584 KB
testcase_08 AC 44 ms
52,608 KB
testcase_09 AC 45 ms
52,736 KB
testcase_10 AC 58 ms
67,456 KB
testcase_11 AC 75 ms
84,736 KB
testcase_12 AC 323 ms
217,708 KB
testcase_13 AC 273 ms
199,216 KB
testcase_14 AC 420 ms
265,252 KB
testcase_15 AC 412 ms
274,348 KB
testcase_16 AC 412 ms
274,368 KB
testcase_17 AC 419 ms
274,880 KB
testcase_18 AC 414 ms
274,748 KB
testcase_19 AC 410 ms
274,748 KB
testcase_20 AC 419 ms
274,628 KB
testcase_21 AC 409 ms
275,140 KB
testcase_22 AC 409 ms
274,632 KB
testcase_23 AC 406 ms
274,760 KB
testcase_24 AC 410 ms
275,012 KB
testcase_25 AC 417 ms
274,624 KB
testcase_26 AC 419 ms
274,628 KB
testcase_27 AC 424 ms
274,860 KB
testcase_28 AC 424 ms
275,012 KB
testcase_29 AC 418 ms
274,884 KB
testcase_30 AC 414 ms
274,880 KB
testcase_31 AC 414 ms
274,624 KB
testcase_32 AC 415 ms
274,628 KB
testcase_33 AC 416 ms
274,108 KB
testcase_34 AC 413 ms
274,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
for i, b in enumerate(map(int, input().split())):
    a[i] ^= b
a = [0] + a + [0]
a = [x ^ y for x, y in zip(a, a[1:])]
print(a.count(1) // 2)
0