結果

問題 No.1868 Teleporting Cyanmond
ユーザー prussian_coderprussian_coder
提出日時 2022-03-19 14:02:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 147 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 78,336 KB
最終ジャッジ日時 2024-10-04 12:47:32
合計ジャッジ時間 3,417 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,744 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 61 ms
71,552 KB
testcase_04 AC 59 ms
67,200 KB
testcase_05 AC 48 ms
59,136 KB
testcase_06 AC 49 ms
60,544 KB
testcase_07 AC 53 ms
64,896 KB
testcase_08 AC 51 ms
61,952 KB
testcase_09 AC 54 ms
63,744 KB
testcase_10 AC 59 ms
70,272 KB
testcase_11 AC 47 ms
58,624 KB
testcase_12 AC 50 ms
61,056 KB
testcase_13 AC 57 ms
65,920 KB
testcase_14 AC 64 ms
73,472 KB
testcase_15 AC 60 ms
68,672 KB
testcase_16 AC 51 ms
60,800 KB
testcase_17 AC 52 ms
61,952 KB
testcase_18 AC 69 ms
75,136 KB
testcase_19 AC 69 ms
75,648 KB
testcase_20 AC 68 ms
75,904 KB
testcase_21 AC 69 ms
75,904 KB
testcase_22 AC 69 ms
75,264 KB
testcase_23 AC 71 ms
76,032 KB
testcase_24 AC 72 ms
76,288 KB
testcase_25 AC 71 ms
76,416 KB
testcase_26 AC 72 ms
77,696 KB
testcase_27 AC 72 ms
78,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=[int(x) for x in input().split()]
a=0
x=0
y=1
u=0
while u<N:
	u=y
	for i in range(x,y):
		u=max(u,A[i])
	x=y
	y=u
	a+=1
print(a)
	
0