結果

問題 No.1868 Teleporting Cyanmond
ユーザー kept1994kept1994
提出日時 2022-03-19 03:44:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 90,496 KB
最終ジャッジ日時 2024-10-03 16:57:27
合計ジャッジ時間 3,004 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 59 ms
78,592 KB
testcase_04 AC 57 ms
73,728 KB
testcase_05 AC 42 ms
59,776 KB
testcase_06 AC 44 ms
62,208 KB
testcase_07 AC 51 ms
68,864 KB
testcase_08 AC 48 ms
65,408 KB
testcase_09 AC 50 ms
67,456 KB
testcase_10 AC 57 ms
77,312 KB
testcase_11 AC 42 ms
59,008 KB
testcase_12 AC 46 ms
63,360 KB
testcase_13 AC 53 ms
70,912 KB
testcase_14 AC 62 ms
81,408 KB
testcase_15 AC 56 ms
74,752 KB
testcase_16 AC 45 ms
61,440 KB
testcase_17 AC 46 ms
64,000 KB
testcase_18 AC 68 ms
87,936 KB
testcase_19 AC 69 ms
88,576 KB
testcase_20 AC 69 ms
88,064 KB
testcase_21 AC 69 ms
87,936 KB
testcase_22 AC 68 ms
88,448 KB
testcase_23 AC 67 ms
87,808 KB
testcase_24 AC 67 ms
87,680 KB
testcase_25 AC 73 ms
90,496 KB
testcase_26 AC 68 ms
87,896 KB
testcase_27 AC 68 ms
87,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

def main():
    N = int(input())
    R = list(map(lambda i: int(i) - 1, input().split())) + [N - 1]
    now = 0
    next = 0
    temp = 0
    for i in range(R[0] + 1):
        if R[i] >= temp:
            next = i
            temp = R[i]
    ans = 0
    while now < N - 1:
        checked = now
        now = next
        temp = 0
        for i in range(checked + 1, R[next] + 1):
            if R[i] >= temp:
                next = i
                temp = R[i]
        ans += 1
    print(ans)



if __name__ == '__main__':
    main()
0