結果

問題 No.1183 コイン遊び
ユーザー brthyyjpbrthyyjp
提出日時 2020-10-19 01:11:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 391 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 276,164 KB
最終ジャッジ日時 2024-07-21 06:48:50
合計ジャッジ時間 11,844 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 37 ms
51,456 KB
testcase_05 AC 36 ms
51,712 KB
testcase_06 AC 38 ms
51,712 KB
testcase_07 AC 36 ms
51,456 KB
testcase_08 AC 41 ms
58,496 KB
testcase_09 AC 41 ms
58,424 KB
testcase_10 AC 53 ms
70,656 KB
testcase_11 AC 70 ms
90,752 KB
testcase_12 AC 322 ms
268,356 KB
testcase_13 AC 269 ms
239,368 KB
testcase_14 AC 368 ms
268,952 KB
testcase_15 AC 379 ms
275,624 KB
testcase_16 AC 380 ms
276,156 KB
testcase_17 AC 386 ms
275,652 KB
testcase_18 AC 388 ms
276,160 KB
testcase_19 AC 386 ms
275,652 KB
testcase_20 AC 380 ms
275,524 KB
testcase_21 AC 349 ms
275,776 KB
testcase_22 AC 349 ms
275,652 KB
testcase_23 AC 359 ms
276,164 KB
testcase_24 AC 355 ms
275,524 KB
testcase_25 AC 391 ms
275,784 KB
testcase_26 AC 379 ms
275,772 KB
testcase_27 AC 387 ms
276,164 KB
testcase_28 AC 379 ms
275,780 KB
testcase_29 AC 349 ms
275,668 KB
testcase_30 AC 375 ms
275,748 KB
testcase_31 AC 384 ms
275,784 KB
testcase_32 AC 377 ms
275,908 KB
testcase_33 AC 383 ms
275,520 KB
testcase_34 AC 384 ms
275,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

C = []
for a ,b in zip(A, B):
    if a == b:
        C.append(0)
    else:
        C.append(1)
X = []
cur = C[0]
cnt = 0
for c in C:
    if c == cur:
        cnt += 1
    else:
        X.append(cur)
        cur = c
        cnt = 1
else:
    X.append(cur)
print(sum(X))
0