結果

問題 No.1868 Teleporting Cyanmond
ユーザー ThetaTheta
提出日時 2022-10-26 17:12:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 583 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,208 KB
最終ジャッジ日時 2024-07-04 06:41:25
合計ジャッジ時間 3,208 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 72 ms
22,548 KB
testcase_04 AC 61 ms
21,348 KB
testcase_05 AC 29 ms
11,392 KB
testcase_06 AC 35 ms
13,160 KB
testcase_07 AC 48 ms
17,188 KB
testcase_08 AC 41 ms
15,596 KB
testcase_09 AC 49 ms
17,452 KB
testcase_10 AC 67 ms
21,840 KB
testcase_11 AC 28 ms
11,008 KB
testcase_12 AC 39 ms
14,120 KB
testcase_13 AC 58 ms
19,556 KB
testcase_14 AC 89 ms
25,540 KB
testcase_15 AC 65 ms
19,884 KB
testcase_16 AC 33 ms
12,160 KB
testcase_17 AC 38 ms
13,312 KB
testcase_18 AC 104 ms
27,520 KB
testcase_19 AC 107 ms
27,516 KB
testcase_20 AC 107 ms
27,536 KB
testcase_21 AC 105 ms
27,448 KB
testcase_22 AC 104 ms
27,492 KB
testcase_23 AC 119 ms
28,208 KB
testcase_24 AC 121 ms
28,144 KB
testcase_25 AC 118 ms
28,120 KB
testcase_26 AC 120 ms
28,112 KB
testcase_27 AC 125 ms
28,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    R = list(map(int, input().split()))

    most_far_destination = 2
    destination_reverse_dict = {}
    for idx, r in enumerate(R, 1):
        if r < most_far_destination:
            continue
        destination_reverse_dict.update(
            {dest: idx for dest in range(most_far_destination, r + 1)}
        )
        most_far_destination = r + 1

    destination = N
    ctr = 0
    while destination != 1:
        destination = destination_reverse_dict[destination]
        ctr += 1

    print(ctr)


if __name__ == "__main__":
    main()
0