結果

問題 No.1868 Teleporting Cyanmond
ユーザー tassei903tassei903
提出日時 2022-03-11 21:28:44
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 498 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 94,208 KB
最終ジャッジ日時 2024-09-16 01:31:55
合計ジャッジ時間 5,018 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
56,704 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 42 ms
51,328 KB
testcase_03 AC 66 ms
76,928 KB
testcase_04 AC 61 ms
71,680 KB
testcase_05 AC 46 ms
59,008 KB
testcase_06 AC 50 ms
61,824 KB
testcase_07 AC 54 ms
67,200 KB
testcase_08 AC 52 ms
64,384 KB
testcase_09 AC 54 ms
65,920 KB
testcase_10 AC 65 ms
75,136 KB
testcase_11 AC 46 ms
58,240 KB
testcase_12 AC 52 ms
63,104 KB
testcase_13 AC 60 ms
68,864 KB
testcase_14 AC 69 ms
78,592 KB
testcase_15 AC 63 ms
72,704 KB
testcase_16 AC 49 ms
60,928 KB
testcase_17 AC 52 ms
62,976 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")

#######################################################################

N = ni()
R = na()
i = 0
z = R[0]
ans = 1
while z < N:
    ans += 1
    k,i = i,z
    for j in range(k+1,i):
        z = max(z,R[j])
print(ans)
0