結果

問題 No.1183 コイン遊び
ユーザー AndrewKAndrewK
提出日時 2020-08-01 12:45:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 351 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 276,172 KB
最終ジャッジ日時 2024-07-07 23:10:27
合計ジャッジ時間 9,909 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,096 KB
testcase_01 AC 32 ms
51,712 KB
testcase_02 AC 32 ms
51,712 KB
testcase_03 AC 31 ms
51,712 KB
testcase_04 AC 31 ms
51,712 KB
testcase_05 AC 31 ms
51,968 KB
testcase_06 AC 31 ms
51,456 KB
testcase_07 AC 31 ms
51,712 KB
testcase_08 AC 35 ms
58,240 KB
testcase_09 AC 36 ms
57,728 KB
testcase_10 AC 46 ms
67,328 KB
testcase_11 AC 59 ms
83,524 KB
testcase_12 AC 229 ms
197,476 KB
testcase_13 AC 201 ms
190,264 KB
testcase_14 AC 310 ms
245,868 KB
testcase_15 AC 329 ms
276,144 KB
testcase_16 AC 327 ms
275,904 KB
testcase_17 AC 329 ms
275,644 KB
testcase_18 AC 330 ms
276,028 KB
testcase_19 AC 332 ms
275,948 KB
testcase_20 AC 338 ms
275,648 KB
testcase_21 AC 323 ms
275,528 KB
testcase_22 AC 321 ms
275,776 KB
testcase_23 AC 318 ms
276,024 KB
testcase_24 AC 320 ms
275,520 KB
testcase_25 AC 351 ms
275,776 KB
testcase_26 AC 339 ms
275,768 KB
testcase_27 AC 337 ms
275,644 KB
testcase_28 AC 339 ms
275,400 KB
testcase_29 AC 325 ms
275,784 KB
testcase_30 AC 328 ms
276,172 KB
testcase_31 AC 329 ms
275,672 KB
testcase_32 AC 327 ms
275,516 KB
testcase_33 AC 331 ms
276,148 KB
testcase_34 AC 329 ms
275,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
ans = 0
if a[0] ^ b[0]:
    ans += 1
for i in range(1, n):
    if (a[i] != b[i]) and (a[i-1] == b[i-1]):
        ans += 1

print(ans)
0