結果

問題 No.1183 コイン遊び
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-10-19 09:05:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 381 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 276,160 KB
最終ジャッジ日時 2024-09-20 06:12:09
合計ジャッジ時間 11,208 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 35 ms
51,840 KB
testcase_04 AC 34 ms
51,712 KB
testcase_05 AC 35 ms
51,712 KB
testcase_06 AC 35 ms
51,840 KB
testcase_07 AC 34 ms
51,584 KB
testcase_08 AC 39 ms
57,984 KB
testcase_09 AC 39 ms
57,984 KB
testcase_10 AC 47 ms
66,432 KB
testcase_11 AC 59 ms
82,688 KB
testcase_12 AC 227 ms
197,732 KB
testcase_13 AC 199 ms
190,380 KB
testcase_14 AC 304 ms
245,364 KB
testcase_15 AC 327 ms
275,560 KB
testcase_16 AC 327 ms
275,644 KB
testcase_17 AC 326 ms
275,820 KB
testcase_18 AC 325 ms
275,864 KB
testcase_19 AC 329 ms
275,396 KB
testcase_20 AC 322 ms
275,820 KB
testcase_21 AC 307 ms
275,656 KB
testcase_22 AC 316 ms
275,568 KB
testcase_23 AC 316 ms
275,656 KB
testcase_24 AC 311 ms
275,524 KB
testcase_25 AC 381 ms
275,692 KB
testcase_26 AC 336 ms
275,780 KB
testcase_27 AC 325 ms
275,388 KB
testcase_28 AC 359 ms
275,392 KB
testcase_29 AC 314 ms
275,516 KB
testcase_30 AC 321 ms
275,524 KB
testcase_31 AC 328 ms
276,160 KB
testcase_32 AC 358 ms
275,560 KB
testcase_33 AC 337 ms
276,028 KB
testcase_34 AC 334 ms
275,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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