結果

問題 No.1868 Teleporting Cyanmond
ユーザー pluto77pluto77
提出日時 2022-03-12 11:31:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,652 KB
最終ジャッジ日時 2024-09-16 17:07:48
合計ジャッジ時間 4,389 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 115 ms
18,624 KB
testcase_04 AC 97 ms
17,044 KB
testcase_05 AC 33 ms
10,880 KB
testcase_06 AC 43 ms
12,032 KB
testcase_07 AC 74 ms
14,568 KB
testcase_08 AC 58 ms
13,300 KB
testcase_09 AC 69 ms
14,256 KB
testcase_10 AC 109 ms
18,300 KB
testcase_11 AC 31 ms
10,880 KB
testcase_12 AC 52 ms
12,544 KB
testcase_13 AC 78 ms
15,192 KB
testcase_14 AC 129 ms
19,604 KB
testcase_15 AC 95 ms
16,596 KB
testcase_16 AC 40 ms
11,648 KB
testcase_17 AC 50 ms
12,416 KB
testcase_18 AC 141 ms
20,544 KB
testcase_19 AC 142 ms
20,648 KB
testcase_20 AC 141 ms
20,516 KB
testcase_21 AC 145 ms
20,648 KB
testcase_22 AC 141 ms
20,516 KB
testcase_23 AC 144 ms
20,652 KB
testcase_24 AC 144 ms
20,648 KB
testcase_25 AC 143 ms
20,516 KB
testcase_26 AC 143 ms
20,644 KB
testcase_27 AC 142 ms
20,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1868
INF=float('inf')
n=int(input())
r=list(map(int,input().split()))
x=0
res=[INF]*n
res[0]=0
for i in range(n-1):
 while x<r[i]:
  res[x]=min(res[x],res[i]+1)
  x+=1
print(res[-1])
0