結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,456 KB
testcase_01 AC 41 ms
51,456 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 67 ms
79,104 KB
testcase_04 AC 61 ms
72,960 KB
testcase_05 AC 48 ms
59,648 KB
testcase_06 AC 50 ms
62,080 KB
testcase_07 AC 56 ms
68,992 KB
testcase_08 AC 54 ms
65,280 KB
testcase_09 AC 56 ms
67,712 KB
testcase_10 AC 66 ms
77,312 KB
testcase_11 AC 45 ms
58,368 KB
testcase_12 AC 51 ms
63,360 KB
testcase_13 AC 60 ms
70,528 KB
testcase_14 AC 72 ms
80,768 KB
testcase_15 AC 65 ms
73,984 KB
testcase_16 AC 49 ms
61,312 KB
testcase_17 AC 52 ms
63,744 KB
testcase_18 AC 75 ms
83,968 KB
testcase_19 AC 75 ms
84,096 KB
testcase_20 AC 76 ms
83,968 KB
testcase_21 AC 77 ms
84,096 KB
testcase_22 AC 77 ms
84,096 KB
testcase_23 AC 81 ms
86,528 KB
testcase_24 AC 76 ms
85,632 KB
testcase_25 AC 77 ms
85,888 KB
testcase_26 AC 77 ms
85,760 KB
testcase_27 AC 81 ms
86,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
R = [0]+list(map(int,input().split()))+[n]

ans = 0
now = 1

while now < n:
    m = 0
    nex = R[now]

    nind = 0
    for i in range(now,nex+1):
        if m <= R[i]:
            m = R[i]
            nind = i
    ans += 1
    now = nind
print(ans)
0