結果

問題 No.1183 コイン遊び
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-08-22 13:05:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 346 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 447 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 275,776 KB
最終ジャッジ日時 2024-10-15 07:10:04
合計ジャッジ時間 10,003 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 39 ms
51,584 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 38 ms
51,712 KB
testcase_08 AC 43 ms
58,368 KB
testcase_09 AC 46 ms
57,600 KB
testcase_10 AC 50 ms
67,072 KB
testcase_11 AC 63 ms
83,072 KB
testcase_12 AC 237 ms
197,620 KB
testcase_13 AC 220 ms
189,180 KB
testcase_14 AC 312 ms
243,992 KB
testcase_15 AC 337 ms
275,112 KB
testcase_16 AC 342 ms
275,128 KB
testcase_17 AC 335 ms
275,612 KB
testcase_18 AC 334 ms
275,432 KB
testcase_19 AC 341 ms
275,688 KB
testcase_20 AC 337 ms
275,268 KB
testcase_21 AC 325 ms
275,392 KB
testcase_22 AC 330 ms
275,776 KB
testcase_23 AC 326 ms
275,736 KB
testcase_24 AC 324 ms
275,216 KB
testcase_25 AC 346 ms
275,516 KB
testcase_26 AC 343 ms
275,524 KB
testcase_27 AC 342 ms
275,652 KB
testcase_28 AC 340 ms
275,524 KB
testcase_29 AC 328 ms
275,520 KB
testcase_30 AC 333 ms
275,652 KB
testcase_31 AC 342 ms
275,260 KB
testcase_32 AC 338 ms
275,520 KB
testcase_33 AC 341 ms
275,524 KB
testcase_34 AC 341 ms
275,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

N = int(stdin.readline())

A = list(map(int,stdin.readline().split()))
B = list(map(int,stdin.readline().split()))

ans = 0
now = 0
for i in range(N):

    if A[i] ^ B[i] == 1:
       if now == 0:
           now = 1
           ans += 1
    else:
        now = 0

print (ans)
0