結果

問題 No.1868 Teleporting Cyanmond
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-03-11 21:40:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 87,296 KB
最終ジャッジ日時 2024-09-16 01:51:07
合計ジャッジ時間 2,812 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,200 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 65 ms
77,824 KB
testcase_04 AC 54 ms
72,320 KB
testcase_05 AC 44 ms
59,520 KB
testcase_06 AC 48 ms
62,592 KB
testcase_07 AC 56 ms
68,224 KB
testcase_08 AC 48 ms
65,152 KB
testcase_09 AC 52 ms
67,072 KB
testcase_10 AC 62 ms
76,288 KB
testcase_11 AC 43 ms
58,880 KB
testcase_12 AC 48 ms
63,104 KB
testcase_13 AC 56 ms
69,376 KB
testcase_14 AC 66 ms
79,744 KB
testcase_15 AC 62 ms
74,240 KB
testcase_16 AC 49 ms
61,952 KB
testcase_17 AC 52 ms
64,384 KB
testcase_18 AC 74 ms
84,992 KB
testcase_19 AC 73 ms
84,352 KB
testcase_20 AC 75 ms
84,736 KB
testcase_21 AC 72 ms
84,224 KB
testcase_22 AC 72 ms
84,608 KB
testcase_23 AC 77 ms
87,296 KB
testcase_24 AC 74 ms
86,784 KB
testcase_25 AC 71 ms
85,888 KB
testcase_26 AC 75 ms
86,016 KB
testcase_27 AC 73 ms
85,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
r = list(map(int,input().split()))
idx = [0] * n
flg = 1
for i in range(n-1):
    if r[i] > flg :
        for j in range(flg,r[i]):
            idx[j] = i
        flg = r[i]
k = idx[n-1]
ans = 1
while k:
    k = idx[k]
    ans += 1
print(ans)
0