結果

問題 No.1868 Teleporting Cyanmond
ユーザー ntudantuda
提出日時 2022-03-11 23:03:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 82,432 KB
最終ジャッジ日時 2024-09-16 03:25:50
合計ジャッジ時間 3,108 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 34 ms
51,712 KB
testcase_03 AC 57 ms
76,672 KB
testcase_04 AC 52 ms
72,192 KB
testcase_05 AC 42 ms
58,240 KB
testcase_06 AC 45 ms
61,312 KB
testcase_07 AC 48 ms
67,200 KB
testcase_08 AC 44 ms
63,232 KB
testcase_09 AC 46 ms
66,304 KB
testcase_10 AC 56 ms
75,008 KB
testcase_11 AC 43 ms
59,264 KB
testcase_12 AC 47 ms
62,848 KB
testcase_13 AC 57 ms
69,376 KB
testcase_14 AC 66 ms
78,464 KB
testcase_15 AC 55 ms
72,320 KB
testcase_16 AC 46 ms
61,568 KB
testcase_17 AC 47 ms
63,232 KB
testcase_18 AC 68 ms
81,664 KB
testcase_19 AC 68 ms
81,152 KB
testcase_20 AC 67 ms
82,048 KB
testcase_21 AC 67 ms
82,048 KB
testcase_22 AC 67 ms
82,176 KB
testcase_23 AC 68 ms
81,920 KB
testcase_24 AC 67 ms
81,920 KB
testcase_25 AC 67 ms
82,048 KB
testcase_26 AC 68 ms
82,432 KB
testcase_27 AC 71 ms
82,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
R = list(map(int,input().split()))
cnt = 1
now = 0
next = 0
for i in range(N-1):
    if i <= now:
        next = max(next,R[i]-1)
    else:
        cnt += 1
        now = next
        next = max(next,R[i]-1)
    if next == N -1:
        break
print(cnt)
0