結果

問題 No.1183 コイン遊び
ユーザー もりをもりを
提出日時 2020-08-22 13:04:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 440 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 276,168 KB
最終ジャッジ日時 2024-10-15 07:09:21
合計ジャッジ時間 12,389 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 38 ms
51,328 KB
testcase_04 AC 38 ms
51,456 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 37 ms
51,328 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 42 ms
57,728 KB
testcase_09 AC 41 ms
58,112 KB
testcase_10 AC 52 ms
68,608 KB
testcase_11 AC 69 ms
87,936 KB
testcase_12 AC 303 ms
243,300 KB
testcase_13 AC 271 ms
219,924 KB
testcase_14 AC 421 ms
269,084 KB
testcase_15 AC 440 ms
276,168 KB
testcase_16 AC 412 ms
275,888 KB
testcase_17 AC 421 ms
275,852 KB
testcase_18 AC 422 ms
275,864 KB
testcase_19 AC 424 ms
276,040 KB
testcase_20 AC 421 ms
275,404 KB
testcase_21 AC 385 ms
275,144 KB
testcase_22 AC 384 ms
275,736 KB
testcase_23 AC 386 ms
275,784 KB
testcase_24 AC 381 ms
275,272 KB
testcase_25 AC 423 ms
275,532 KB
testcase_26 AC 426 ms
275,536 KB
testcase_27 AC 416 ms
276,048 KB
testcase_28 AC 415 ms
275,916 KB
testcase_29 AC 386 ms
275,532 KB
testcase_30 AC 419 ms
275,788 KB
testcase_31 AC 425 ms
275,792 KB
testcase_32 AC 415 ms
276,044 KB
testcase_33 AC 419 ms
275,660 KB
testcase_34 AC 428 ms
275,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import groupby
n = int(input())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
p = [i == j for i, j in zip(a, b)]
res = 0
for k, v in groupby(p):
    if k:
        continue
    res += 1
print(res)
0