結果

問題 No.1183 コイン遊び
ユーザー fukafukatanifukafukatani
提出日時 2020-08-31 22:39:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 322 ms / 2,000 ms
コード長 189 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 195,716 KB
最終ジャッジ日時 2024-11-17 02:40:48
合計ジャッジ時間 9,542 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 38 ms
51,712 KB
testcase_06 AC 40 ms
51,456 KB
testcase_07 AC 39 ms
51,584 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 40 ms
52,096 KB
testcase_10 AC 57 ms
66,176 KB
testcase_11 AC 66 ms
78,208 KB
testcase_12 AC 220 ms
153,008 KB
testcase_13 AC 209 ms
155,472 KB
testcase_14 AC 300 ms
190,364 KB
testcase_15 AC 322 ms
195,716 KB
testcase_16 AC 310 ms
195,228 KB
testcase_17 AC 308 ms
194,968 KB
testcase_18 AC 310 ms
195,488 KB
testcase_19 AC 309 ms
195,104 KB
testcase_20 AC 302 ms
195,104 KB
testcase_21 AC 269 ms
183,704 KB
testcase_22 AC 267 ms
184,348 KB
testcase_23 AC 285 ms
194,716 KB
testcase_24 AC 284 ms
195,360 KB
testcase_25 AC 322 ms
194,968 KB
testcase_26 AC 305 ms
195,104 KB
testcase_27 AC 307 ms
195,100 KB
testcase_28 AC 305 ms
195,484 KB
testcase_29 AC 264 ms
184,348 KB
testcase_30 AC 284 ms
195,104 KB
testcase_31 AC 303 ms
195,100 KB
testcase_32 AC 309 ms
195,608 KB
testcase_33 AC 308 ms
195,096 KB
testcase_34 AC 311 ms
195,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = input().split()
B = input().split()

ans = 0
changing = False
for a, b in zip(A, B):
    if not changing and a != b:
        ans += 1
    changing = a != b

print(ans)
0