結果

問題 No.1868 Teleporting Cyanmond
ユーザー AEnAEn
提出日時 2022-05-12 13:20:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 221 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 90,904 KB
最終ジャッジ日時 2024-07-20 06:39:36
合計ジャッジ時間 11,417 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 59 ms
76,672 KB
testcase_04 AC 53 ms
72,064 KB
testcase_05 AC 42 ms
59,264 KB
testcase_06 WA -
testcase_07 AC 51 ms
67,456 KB
testcase_08 AC 46 ms
64,128 KB
testcase_09 AC 49 ms
66,816 KB
testcase_10 AC 59 ms
75,136 KB
testcase_11 AC 43 ms
58,240 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
R = list(map(int, input().split()))
start, end = 0, R[0]-1
dis = 1
while end < N-1:
    dis += 1
    end2 = end
    for i in range(start+1, end+1):
        end2 = max(end2, R[i])
    end = end2
print(dis)
0