結果

問題 No.1183 コイン遊び
ユーザー ああいいああいい
提出日時 2021-12-23 21:17:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 833 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 39,964 KB
最終ジャッジ日時 2024-09-17 20:09:57
合計ジャッジ時間 18,109 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 26 ms
10,624 KB
testcase_10 AC 39 ms
11,392 KB
testcase_11 AC 66 ms
12,368 KB
testcase_12 AC 433 ms
28,876 KB
testcase_13 AC 380 ms
26,816 KB
testcase_14 AC 621 ms
34,396 KB
testcase_15 AC 661 ms
39,860 KB
testcase_16 AC 659 ms
35,960 KB
testcase_17 AC 686 ms
36,032 KB
testcase_18 AC 685 ms
36,032 KB
testcase_19 AC 684 ms
36,028 KB
testcase_20 AC 721 ms
36,156 KB
testcase_21 AC 541 ms
36,028 KB
testcase_22 AC 603 ms
36,028 KB
testcase_23 AC 565 ms
36,028 KB
testcase_24 AC 555 ms
36,196 KB
testcase_25 AC 676 ms
36,140 KB
testcase_26 AC 692 ms
36,092 KB
testcase_27 AC 675 ms
36,136 KB
testcase_28 AC 665 ms
36,012 KB
testcase_29 AC 540 ms
36,740 KB
testcase_30 AC 833 ms
36,492 KB
testcase_31 AC 687 ms
36,780 KB
testcase_32 AC 708 ms
36,072 KB
testcase_33 AC 670 ms
36,156 KB
testcase_34 AC 665 ms
39,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0
i = 0
while i < N:
    if A[i] == B[i]:
        i += 1
        continue
    if A[i] != B[i]:
        ans += 1
        while i < N and A[i] != B[i]:
            i += 1
print(ans)
0