結果

問題 No.1183 コイン遊び
ユーザー lloyzlloyz
提出日時 2022-05-11 22:35:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 319 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 37,340 KB
最終ジャッジ日時 2024-07-19 08:20:09
合計ジャッジ時間 18,372 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 WA -
testcase_04 AC 29 ms
10,368 KB
testcase_05 WA -
testcase_06 AC 29 ms
10,496 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 69 ms
12,348 KB
testcase_12 AC 434 ms
26,564 KB
testcase_13 WA -
testcase_14 AC 633 ms
34,224 KB
testcase_15 WA -
testcase_16 AC 685 ms
35,924 KB
testcase_17 WA -
testcase_18 AC 669 ms
36,064 KB
testcase_19 WA -
testcase_20 AC 694 ms
36,012 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 681 ms
36,016 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 669 ms
35,932 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 669 ms
35,888 KB
testcase_32 WA -
testcase_33 AC 678 ms
36,008 KB
testcase_34 AC 686 ms
36,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0
miss_flag = False
for i in range(n):
    if A[i] == B[i]:
        if not miss_flag:
            ans += 1
        miss_flag = True
    else:
        miss_flag = False
        if i == n - 1:
            ans += 1
print(ans)
0