結果

問題 No.1183 コイン遊び
ユーザー zyxwzyxw
提出日時 2021-02-02 21:28:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 356 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 276,228 KB
最終ジャッジ日時 2024-06-29 23:54:43
合計ジャッジ時間 10,482 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,156 KB
testcase_01 AC 35 ms
52,232 KB
testcase_02 AC 33 ms
52,104 KB
testcase_03 AC 32 ms
52,280 KB
testcase_04 AC 33 ms
52,392 KB
testcase_05 AC 33 ms
51,632 KB
testcase_06 AC 33 ms
52,208 KB
testcase_07 AC 32 ms
51,752 KB
testcase_08 AC 35 ms
58,228 KB
testcase_09 AC 39 ms
58,548 KB
testcase_10 AC 47 ms
66,996 KB
testcase_11 AC 62 ms
83,708 KB
testcase_12 AC 241 ms
197,860 KB
testcase_13 AC 212 ms
190,040 KB
testcase_14 AC 329 ms
245,136 KB
testcase_15 AC 356 ms
276,228 KB
testcase_16 AC 340 ms
275,844 KB
testcase_17 AC 327 ms
275,688 KB
testcase_18 AC 322 ms
275,716 KB
testcase_19 AC 331 ms
275,756 KB
testcase_20 AC 324 ms
275,860 KB
testcase_21 AC 308 ms
275,812 KB
testcase_22 AC 306 ms
275,884 KB
testcase_23 AC 319 ms
275,412 KB
testcase_24 AC 310 ms
275,896 KB
testcase_25 AC 326 ms
276,156 KB
testcase_26 AC 336 ms
275,528 KB
testcase_27 AC 314 ms
275,576 KB
testcase_28 AC 320 ms
275,676 KB
testcase_29 AC 317 ms
275,564 KB
testcase_30 AC 331 ms
275,740 KB
testcase_31 AC 327 ms
275,668 KB
testcase_32 AC 330 ms
275,784 KB
testcase_33 AC 320 ms
275,728 KB
testcase_34 AC 324 ms
275,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
ans=0
m=0
for i in range(N):
    if A[i]!=B[i]:
        m+=1
    else:
        if m>=1:
            ans+=1
            m=0
if m>=1:
    ans+=1
print(ans)
0