結果

問題 No.1183 コイン遊び
ユーザー miya145592miya145592
提出日時 2023-05-15 23:28:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 355 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 276,352 KB
最終ジャッジ日時 2024-05-08 04:11:19
合計ジャッジ時間 11,312 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,244 KB
testcase_01 AC 37 ms
52,288 KB
testcase_02 AC 35 ms
52,268 KB
testcase_03 AC 34 ms
52,028 KB
testcase_04 AC 33 ms
52,152 KB
testcase_05 AC 34 ms
52,280 KB
testcase_06 AC 33 ms
52,336 KB
testcase_07 AC 33 ms
51,824 KB
testcase_08 AC 37 ms
58,352 KB
testcase_09 AC 37 ms
59,356 KB
testcase_10 AC 43 ms
69,000 KB
testcase_11 AC 58 ms
87,140 KB
testcase_12 AC 275 ms
222,872 KB
testcase_13 AC 221 ms
190,120 KB
testcase_14 AC 352 ms
268,516 KB
testcase_15 AC 355 ms
276,092 KB
testcase_16 AC 341 ms
275,948 KB
testcase_17 AC 328 ms
276,176 KB
testcase_18 AC 345 ms
276,196 KB
testcase_19 AC 349 ms
275,948 KB
testcase_20 AC 344 ms
276,168 KB
testcase_21 AC 309 ms
275,836 KB
testcase_22 AC 310 ms
276,060 KB
testcase_23 AC 305 ms
276,052 KB
testcase_24 AC 309 ms
275,376 KB
testcase_25 AC 351 ms
276,180 KB
testcase_26 AC 347 ms
275,976 KB
testcase_27 AC 349 ms
275,808 KB
testcase_28 AC 343 ms
276,040 KB
testcase_29 AC 318 ms
275,732 KB
testcase_30 AC 355 ms
276,352 KB
testcase_31 AC 343 ms
275,816 KB
testcase_32 AC 348 ms
275,820 KB
testcase_33 AC 348 ms
276,068 KB
testcase_34 AC 329 ms
275,568 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