結果

問題 No.1868 Teleporting Cyanmond
ユーザー tonyu0tonyu0
提出日時 2022-04-20 14:48:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 20,780 KB
最終ジャッジ日時 2024-06-11 15:46:33
合計ジャッジ時間 4,044 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 110 ms
18,752 KB
testcase_04 AC 87 ms
17,048 KB
testcase_05 AC 32 ms
11,136 KB
testcase_06 AC 40 ms
12,160 KB
testcase_07 AC 65 ms
14,572 KB
testcase_08 AC 55 ms
13,304 KB
testcase_09 AC 61 ms
14,376 KB
testcase_10 AC 101 ms
18,424 KB
testcase_11 AC 27 ms
11,008 KB
testcase_12 AC 45 ms
12,672 KB
testcase_13 AC 71 ms
15,336 KB
testcase_14 AC 112 ms
19,744 KB
testcase_15 AC 86 ms
16,728 KB
testcase_16 AC 36 ms
11,648 KB
testcase_17 AC 44 ms
12,544 KB
testcase_18 AC 127 ms
20,648 KB
testcase_19 AC 129 ms
20,648 KB
testcase_20 AC 129 ms
20,652 KB
testcase_21 AC 127 ms
20,652 KB
testcase_22 AC 126 ms
20,652 KB
testcase_23 AC 133 ms
20,780 KB
testcase_24 AC 133 ms
20,636 KB
testcase_25 AC 129 ms
20,648 KB
testcase_26 AC 134 ms
20,648 KB
testcase_27 AC 136 ms
20,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(lambda x:int(x)-1, input().split()))
b=a.copy()
for i in range(n-2):
    b[i+1]=max(b[i+1],b[i])
ans=0
cur=0
while cur + 1 != n:
    cur=b[cur]
    ans+=1
print(ans)
0