結果

問題 No.1183 コイン遊び
ユーザー ohanaohana
提出日時 2023-11-06 15:13:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 483 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 276,296 KB
最終ジャッジ日時 2024-09-25 23:02:58
合計ジャッジ時間 12,462 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,184 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 32 ms
52,352 KB
testcase_03 AC 31 ms
51,712 KB
testcase_04 AC 32 ms
51,456 KB
testcase_05 AC 32 ms
51,584 KB
testcase_06 AC 32 ms
51,584 KB
testcase_07 AC 32 ms
51,584 KB
testcase_08 AC 35 ms
57,856 KB
testcase_09 AC 36 ms
58,240 KB
testcase_10 AC 45 ms
69,504 KB
testcase_11 AC 67 ms
90,624 KB
testcase_12 AC 345 ms
268,380 KB
testcase_13 AC 283 ms
240,036 KB
testcase_14 AC 435 ms
268,828 KB
testcase_15 AC 483 ms
275,632 KB
testcase_16 AC 409 ms
276,044 KB
testcase_17 AC 412 ms
276,040 KB
testcase_18 AC 406 ms
275,944 KB
testcase_19 AC 405 ms
276,172 KB
testcase_20 AC 411 ms
275,660 KB
testcase_21 AC 361 ms
275,528 KB
testcase_22 AC 359 ms
275,656 KB
testcase_23 AC 350 ms
275,788 KB
testcase_24 AC 354 ms
275,912 KB
testcase_25 AC 398 ms
276,088 KB
testcase_26 AC 402 ms
276,296 KB
testcase_27 AC 411 ms
276,040 KB
testcase_28 AC 405 ms
275,656 KB
testcase_29 AC 356 ms
275,276 KB
testcase_30 AC 415 ms
275,656 KB
testcase_31 AC 403 ms
276,040 KB
testcase_32 AC 403 ms
275,916 KB
testcase_33 AC 412 ms
276,104 KB
testcase_34 AC 406 ms
275,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

_ = int(input())

A = list(map(int, input().split()))
B = list(map(int, input().split()))
C = [a != b for a, b in zip(A, B)]

ans = []
for k, g in itertools.groupby(C):
    ans.append(k)

print(sum(ans))
0