結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 70 ms
78,592 KB
testcase_04 AC 62 ms
73,344 KB
testcase_05 AC 49 ms
59,648 KB
testcase_06 AC 53 ms
62,592 KB
testcase_07 AC 58 ms
68,480 KB
testcase_08 AC 55 ms
64,640 KB
testcase_09 AC 57 ms
67,584 KB
testcase_10 AC 68 ms
77,568 KB
testcase_11 AC 48 ms
59,648 KB
testcase_12 AC 54 ms
64,256 KB
testcase_13 AC 61 ms
69,760 KB
testcase_14 AC 72 ms
80,768 KB
testcase_15 AC 66 ms
73,984 KB
testcase_16 AC 53 ms
61,952 KB
testcase_17 AC 54 ms
63,744 KB
testcase_18 AC 77 ms
83,712 KB
testcase_19 AC 77 ms
83,840 KB
testcase_20 AC 76 ms
83,456 KB
testcase_21 AC 78 ms
84,096 KB
testcase_22 AC 77 ms
84,096 KB
testcase_23 AC 81 ms
86,272 KB
testcase_24 AC 81 ms
86,272 KB
testcase_25 AC 80 ms
85,504 KB
testcase_26 AC 82 ms
86,272 KB
testcase_27 AC 80 ms
85,760 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