結果

問題 No.1183 コイン遊び
ユーザー lemondolemondo
提出日時 2020-08-22 13:18:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 367 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 269,972 KB
最終ジャッジ日時 2024-10-15 07:31:20
合計ジャッジ時間 10,253 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,576 KB
testcase_01 AC 37 ms
52,696 KB
testcase_02 AC 38 ms
52,808 KB
testcase_03 AC 37 ms
51,824 KB
testcase_04 AC 37 ms
52,960 KB
testcase_05 AC 37 ms
53,024 KB
testcase_06 AC 37 ms
52,412 KB
testcase_07 AC 37 ms
52,156 KB
testcase_08 AC 40 ms
58,816 KB
testcase_09 AC 41 ms
58,784 KB
testcase_10 AC 53 ms
68,108 KB
testcase_11 AC 64 ms
85,748 KB
testcase_12 AC 256 ms
208,872 KB
testcase_13 AC 221 ms
198,872 KB
testcase_14 AC 367 ms
263,912 KB
testcase_15 AC 359 ms
269,400 KB
testcase_16 AC 349 ms
269,556 KB
testcase_17 AC 366 ms
269,592 KB
testcase_18 AC 350 ms
269,720 KB
testcase_19 AC 352 ms
269,460 KB
testcase_20 AC 349 ms
269,716 KB
testcase_21 AC 331 ms
269,348 KB
testcase_22 AC 333 ms
269,212 KB
testcase_23 AC 333 ms
269,460 KB
testcase_24 AC 338 ms
269,208 KB
testcase_25 AC 348 ms
269,460 KB
testcase_26 AC 351 ms
269,592 KB
testcase_27 AC 348 ms
269,460 KB
testcase_28 AC 348 ms
269,336 KB
testcase_29 AC 333 ms
269,656 KB
testcase_30 AC 338 ms
269,584 KB
testcase_31 AC 344 ms
269,904 KB
testcase_32 AC 346 ms
269,972 KB
testcase_33 AC 350 ms
269,936 KB
testcase_34 AC 350 ms
269,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def input(): return sys.stdin.readline().strip()
def mapint(): return map(int, input().split())
sys.setrecursionlimit(10**9)

N = int(input())
As = list(mapint())+[-1]
Bs = list(mapint())+[-1]

cnt = 0
ans = 0
for i in range(N+1):
    if As[i]==Bs[i]:
        if cnt>0:
            ans += 1
            cnt = 0
    else:
        cnt += 1
print(ans)
0