結果

問題 No.1868 Teleporting Cyanmond
ユーザー ああいいああいい
提出日時 2022-03-11 21:27:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 208 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 81,868 KB
実行使用メモリ 83,324 KB
最終ジャッジ日時 2024-09-16 01:30:39
合計ジャッジ時間 2,808 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,212 KB
testcase_01 AC 36 ms
53,108 KB
testcase_02 AC 36 ms
52,420 KB
testcase_03 AC 58 ms
78,056 KB
testcase_04 AC 52 ms
73,204 KB
testcase_05 AC 39 ms
59,412 KB
testcase_06 AC 45 ms
61,896 KB
testcase_07 AC 47 ms
69,864 KB
testcase_08 AC 45 ms
65,872 KB
testcase_09 AC 47 ms
67,520 KB
testcase_10 AC 54 ms
76,304 KB
testcase_11 AC 40 ms
58,900 KB
testcase_12 AC 43 ms
63,020 KB
testcase_13 AC 48 ms
69,824 KB
testcase_14 AC 59 ms
80,292 KB
testcase_15 AC 53 ms
72,688 KB
testcase_16 AC 43 ms
62,288 KB
testcase_17 AC 43 ms
64,860 KB
testcase_18 AC 62 ms
82,012 KB
testcase_19 AC 61 ms
82,876 KB
testcase_20 AC 63 ms
83,180 KB
testcase_21 AC 63 ms
83,240 KB
testcase_22 AC 64 ms
81,484 KB
testcase_23 AC 63 ms
83,280 KB
testcase_24 AC 63 ms
82,980 KB
testcase_25 AC 61 ms
81,496 KB
testcase_26 AC 63 ms
83,324 KB
testcase_27 AC 64 ms
82,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
R = list(map(int,input().split()))

M = [0] * N
M[0] = R[0]
for i in range(1,N-1):
    M[i] = max(M[i-1],R[i])
count = 0
now = 1
while now < N:
    count += 1
    now = M[now-1]
print(count)
0