結果

問題 No.1183 コイン遊び
ユーザー 👑 KazunKazun
提出日時 2020-08-22 13:52:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 407 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 674 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 276,296 KB
最終ジャッジ日時 2024-10-15 08:06:56
合計ジャッジ時間 10,825 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,356 KB
testcase_01 AC 38 ms
52,408 KB
testcase_02 AC 37 ms
52,788 KB
testcase_03 AC 38 ms
52,740 KB
testcase_04 AC 38 ms
53,032 KB
testcase_05 AC 38 ms
52,656 KB
testcase_06 AC 38 ms
52,396 KB
testcase_07 AC 37 ms
51,984 KB
testcase_08 AC 46 ms
58,276 KB
testcase_09 AC 41 ms
59,644 KB
testcase_10 AC 52 ms
69,480 KB
testcase_11 AC 66 ms
85,760 KB
testcase_12 AC 292 ms
207,704 KB
testcase_13 AC 256 ms
190,176 KB
testcase_14 AC 401 ms
263,196 KB
testcase_15 AC 395 ms
275,748 KB
testcase_16 AC 394 ms
276,060 KB
testcase_17 AC 395 ms
275,780 KB
testcase_18 AC 392 ms
275,840 KB
testcase_19 AC 407 ms
275,780 KB
testcase_20 AC 404 ms
275,652 KB
testcase_21 AC 378 ms
276,036 KB
testcase_22 AC 395 ms
275,652 KB
testcase_23 AC 352 ms
276,164 KB
testcase_24 AC 333 ms
275,640 KB
testcase_25 AC 357 ms
275,796 KB
testcase_26 AC 364 ms
275,864 KB
testcase_27 AC 362 ms
276,296 KB
testcase_28 AC 362 ms
275,908 KB
testcase_29 AC 337 ms
276,036 KB
testcase_30 AC 338 ms
275,780 KB
testcase_31 AC 357 ms
275,912 KB
testcase_32 AC 354 ms
276,040 KB
testcase_33 AC 355 ms
275,780 KB
testcase_34 AC 360 ms
276,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))

C=[0]*N
for i in range(N):
    if A[i]!=B[i]:
        C[i]=1
C=[0]+C

K=0
for i in range(N):
    if C[i+1]==1 and C[i]==0:
        K+=1
print(K)
0