結果

問題 No.1183 コイン遊び
ユーザー ssmkzkssmkzk
提出日時 2020-10-08 18:35:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 761 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 39,872 KB
最終ジャッジ日時 2024-07-20 06:03:16
合計ジャッジ時間 20,054 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
10,624 KB
testcase_01 AC 36 ms
10,496 KB
testcase_02 AC 35 ms
10,752 KB
testcase_03 AC 35 ms
10,496 KB
testcase_04 AC 31 ms
10,496 KB
testcase_05 AC 35 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 43 ms
11,008 KB
testcase_11 AC 71 ms
12,248 KB
testcase_12 AC 481 ms
28,828 KB
testcase_13 AC 423 ms
26,820 KB
testcase_14 AC 674 ms
34,148 KB
testcase_15 AC 752 ms
39,864 KB
testcase_16 AC 750 ms
36,028 KB
testcase_17 AC 730 ms
35,908 KB
testcase_18 AC 719 ms
35,904 KB
testcase_19 AC 725 ms
35,912 KB
testcase_20 AC 708 ms
36,036 KB
testcase_21 AC 690 ms
36,020 KB
testcase_22 AC 669 ms
35,948 KB
testcase_23 AC 691 ms
36,036 KB
testcase_24 AC 744 ms
36,024 KB
testcase_25 AC 729 ms
36,032 KB
testcase_26 AC 729 ms
36,036 KB
testcase_27 AC 722 ms
36,032 KB
testcase_28 AC 740 ms
36,032 KB
testcase_29 AC 736 ms
35,952 KB
testcase_30 AC 734 ms
35,908 KB
testcase_31 AC 761 ms
35,824 KB
testcase_32 AC 740 ms
35,908 KB
testcase_33 AC 729 ms
36,160 KB
testcase_34 AC 737 ms
39,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lA = list(map(int, input().split()))
lB = list(map(int, input().split()))
ans = 0
f = 0
for i in range(N):
    if lA[i] == lB[i] and f == 1:
        ans +=1
        f = 0
    elif lA[i] != lB[i]:
        f = 1

if f == 1:
    print(ans + 1)
else:
    print(ans)
0