結果

問題 No.1183 コイン遊び
ユーザー dangodango
提出日時 2023-06-25 09:04:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 463 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 276,036 KB
最終ジャッジ日時 2024-07-02 11:20:48
合計ジャッジ時間 14,011 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 40 ms
51,584 KB
testcase_08 AC 45 ms
57,984 KB
testcase_09 AC 44 ms
57,856 KB
testcase_10 AC 58 ms
68,736 KB
testcase_11 AC 83 ms
88,960 KB
testcase_12 AC 355 ms
208,092 KB
testcase_13 AC 310 ms
189,824 KB
testcase_14 AC 463 ms
255,648 KB
testcase_15 AC 453 ms
275,876 KB
testcase_16 AC 453 ms
275,644 KB
testcase_17 AC 444 ms
276,036 KB
testcase_18 AC 449 ms
276,032 KB
testcase_19 AC 443 ms
275,652 KB
testcase_20 AC 461 ms
275,908 KB
testcase_21 AC 434 ms
275,648 KB
testcase_22 AC 437 ms
275,524 KB
testcase_23 AC 435 ms
275,396 KB
testcase_24 AC 430 ms
275,776 KB
testcase_25 AC 450 ms
275,652 KB
testcase_26 AC 449 ms
275,652 KB
testcase_27 AC 452 ms
275,528 KB
testcase_28 AC 449 ms
275,652 KB
testcase_29 AC 437 ms
275,396 KB
testcase_30 AC 439 ms
275,696 KB
testcase_31 AC 456 ms
275,912 KB
testcase_32 AC 457 ms
275,780 KB
testcase_33 AC 456 ms
276,028 KB
testcase_34 AC 452 ms
275,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
na, nb = 0, 0
ans = 0
for x, y, r in zip(list(map(int, input().split())), list(map(int, input().split())), range(n)):
  if r == 0 and x ^ y:
    ans += 1
  elif (x != y) and (na == nb):
    ans += 1
  na, nb = x, y
print(ans)
0