結果

問題 No.1183 コイン遊び
ユーザー miya145592miya145592
提出日時 2023-05-15 23:28:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 276,528 KB
最終ジャッジ日時 2024-12-14 04:30:22
合計ジャッジ時間 11,728 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,048 KB
testcase_01 AC 38 ms
53,440 KB
testcase_02 AC 40 ms
51,944 KB
testcase_03 AC 38 ms
53,132 KB
testcase_04 AC 37 ms
53,220 KB
testcase_05 AC 38 ms
51,888 KB
testcase_06 AC 40 ms
53,352 KB
testcase_07 AC 39 ms
52,556 KB
testcase_08 AC 41 ms
58,300 KB
testcase_09 AC 42 ms
59,140 KB
testcase_10 AC 50 ms
69,456 KB
testcase_11 AC 66 ms
87,132 KB
testcase_12 AC 273 ms
222,924 KB
testcase_13 AC 222 ms
189,956 KB
testcase_14 AC 346 ms
268,424 KB
testcase_15 AC 344 ms
275,872 KB
testcase_16 AC 342 ms
275,824 KB
testcase_17 AC 341 ms
276,052 KB
testcase_18 AC 356 ms
276,304 KB
testcase_19 AC 363 ms
275,984 KB
testcase_20 AC 363 ms
276,528 KB
testcase_21 AC 330 ms
276,276 KB
testcase_22 AC 330 ms
275,984 KB
testcase_23 AC 319 ms
275,692 KB
testcase_24 AC 331 ms
275,872 KB
testcase_25 AC 368 ms
275,876 KB
testcase_26 AC 359 ms
276,040 KB
testcase_27 AC 363 ms
276,284 KB
testcase_28 AC 364 ms
275,976 KB
testcase_29 AC 331 ms
275,536 KB
testcase_30 AC 362 ms
276,024 KB
testcase_31 AC 358 ms
275,840 KB
testcase_32 AC 368 ms
275,872 KB
testcase_33 AC 366 ms
276,016 KB
testcase_34 AC 353 ms
275,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
D = [[-1, -1]]
for i in range(N):
    if A[i]==B[i]:
        if D[-1][1]==i-1:
            D[-1][1] = i
        else:
            D.append([i, i])
if D[-1][1]==N-1:
    D[-1][1] = N
else:
    D.append([N, N])
print(len(D)-1)
0