結果

問題 No.1868 Teleporting Cyanmond
ユーザー kohei2019kohei2019
提出日時 2023-08-14 19:16:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 86,912 KB
最終ジャッジ日時 2024-05-02 07:18:06
合計ジャッジ時間 3,051 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 61 ms
78,848 KB
testcase_04 AC 56 ms
73,600 KB
testcase_05 AC 46 ms
59,520 KB
testcase_06 AC 47 ms
62,592 KB
testcase_07 AC 53 ms
68,480 KB
testcase_08 AC 50 ms
64,896 KB
testcase_09 AC 52 ms
67,712 KB
testcase_10 AC 61 ms
77,824 KB
testcase_11 AC 45 ms
59,776 KB
testcase_12 AC 47 ms
63,744 KB
testcase_13 AC 55 ms
69,888 KB
testcase_14 AC 65 ms
80,256 KB
testcase_15 AC 67 ms
74,240 KB
testcase_16 AC 52 ms
61,824 KB
testcase_17 AC 54 ms
63,616 KB
testcase_18 AC 76 ms
83,456 KB
testcase_19 AC 66 ms
83,968 KB
testcase_20 AC 74 ms
83,456 KB
testcase_21 AC 67 ms
83,712 KB
testcase_22 AC 77 ms
83,584 KB
testcase_23 AC 73 ms
86,912 KB
testcase_24 AC 81 ms
86,272 KB
testcase_25 AC 70 ms
86,144 KB
testcase_26 AC 80 ms
86,272 KB
testcase_27 AC 71 ms
85,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lsR = list(map(lambda x:int(x)-1,input().split()))+[0]

now = 0
nextto = lsR[0]
cnt = 1
while True:
    if nextto == N-1:
        break
    ne = nextto
    for j in range(now,ne+1):
        nextto = max(nextto,lsR[j])
    now = ne
    cnt += 1
print(cnt)
0