結果

問題 No.1183 コイン遊び
ユーザー gorugo30gorugo30
提出日時 2021-02-25 17:17:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 405 ms / 2,000 ms
コード長 246 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 276,292 KB
最終ジャッジ日時 2024-10-01 07:41:13
合計ジャッジ時間 11,672 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,712 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 33 ms
51,584 KB
testcase_05 AC 33 ms
51,712 KB
testcase_06 AC 32 ms
51,712 KB
testcase_07 AC 34 ms
51,456 KB
testcase_08 AC 38 ms
57,984 KB
testcase_09 AC 37 ms
57,984 KB
testcase_10 AC 57 ms
68,224 KB
testcase_11 AC 65 ms
83,840 KB
testcase_12 AC 277 ms
202,660 KB
testcase_13 AC 236 ms
190,172 KB
testcase_14 AC 405 ms
251,864 KB
testcase_15 AC 369 ms
275,888 KB
testcase_16 AC 371 ms
276,160 KB
testcase_17 AC 360 ms
275,656 KB
testcase_18 AC 366 ms
275,356 KB
testcase_19 AC 364 ms
276,292 KB
testcase_20 AC 362 ms
275,912 KB
testcase_21 AC 348 ms
275,652 KB
testcase_22 AC 357 ms
275,908 KB
testcase_23 AC 359 ms
275,784 KB
testcase_24 AC 347 ms
275,532 KB
testcase_25 AC 357 ms
275,396 KB
testcase_26 AC 358 ms
275,400 KB
testcase_27 AC 361 ms
275,276 KB
testcase_28 AC 365 ms
275,532 KB
testcase_29 AC 356 ms
276,036 KB
testcase_30 AC 362 ms
276,124 KB
testcase_31 AC 359 ms
276,164 KB
testcase_32 AC 356 ms
275,784 KB
testcase_33 AC 364 ms
276,036 KB
testcase_34 AC 365 ms
275,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
C = [A[i] ^ B[i] for i in range(N)]
ans = 0
for i in range(1, N):
    if C[i - 1] == 1 and C[i] == 0:
        ans += 1
if C[-1] == 1:
    ans += 1
print(ans)
0