結果

問題 No.1183 コイン遊び
ユーザー lloyzlloyz
提出日時 2022-05-11 22:36:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 656 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 36,896 KB
最終ジャッジ日時 2024-07-19 08:22:32
合計ジャッジ時間 17,042 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 27 ms
10,368 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 25 ms
10,368 KB
testcase_05 AC 26 ms
10,368 KB
testcase_06 AC 26 ms
10,496 KB
testcase_07 AC 25 ms
10,496 KB
testcase_08 AC 25 ms
10,496 KB
testcase_09 AC 25 ms
10,752 KB
testcase_10 AC 35 ms
10,880 KB
testcase_11 AC 61 ms
12,220 KB
testcase_12 AC 399 ms
26,432 KB
testcase_13 AC 356 ms
24,756 KB
testcase_14 AC 573 ms
34,900 KB
testcase_15 AC 627 ms
35,932 KB
testcase_16 AC 620 ms
35,792 KB
testcase_17 AC 616 ms
36,124 KB
testcase_18 AC 637 ms
35,804 KB
testcase_19 AC 637 ms
35,996 KB
testcase_20 AC 633 ms
35,952 KB
testcase_21 AC 560 ms
36,060 KB
testcase_22 AC 549 ms
35,932 KB
testcase_23 AC 626 ms
36,004 KB
testcase_24 AC 568 ms
36,896 KB
testcase_25 AC 618 ms
36,128 KB
testcase_26 AC 623 ms
35,672 KB
testcase_27 AC 613 ms
35,932 KB
testcase_28 AC 629 ms
35,868 KB
testcase_29 AC 562 ms
35,804 KB
testcase_30 AC 656 ms
36,348 KB
testcase_31 AC 629 ms
36,000 KB
testcase_32 AC 634 ms
35,932 KB
testcase_33 AC 629 ms
35,928 KB
testcase_34 AC 601 ms
35,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0
miss_flag = True
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