結果

問題 No.1868 Teleporting Cyanmond
ユーザー nariyelnariyel
提出日時 2022-03-12 06:09:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 834 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,764 KB
最終ジャッジ日時 2024-09-16 11:35:11
合計ジャッジ時間 3,599 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,368 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 63 ms
18,444 KB
testcase_04 AC 58 ms
16,808 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 32 ms
12,032 KB
testcase_07 AC 41 ms
14,560 KB
testcase_08 AC 33 ms
12,908 KB
testcase_09 AC 38 ms
14,148 KB
testcase_10 AC 56 ms
17,520 KB
testcase_11 AC 25 ms
10,624 KB
testcase_12 AC 33 ms
12,544 KB
testcase_13 AC 45 ms
14,872 KB
testcase_14 AC 66 ms
19,780 KB
testcase_15 AC 53 ms
16,372 KB
testcase_16 AC 31 ms
11,520 KB
testcase_17 AC 34 ms
12,416 KB
testcase_18 AC 80 ms
20,508 KB
testcase_19 AC 82 ms
20,504 KB
testcase_20 AC 84 ms
20,376 KB
testcase_21 AC 90 ms
20,508 KB
testcase_22 AC 89 ms
20,760 KB
testcase_23 AC 109 ms
20,764 KB
testcase_24 AC 101 ms
20,512 KB
testcase_25 AC 102 ms
20,504 KB
testcase_26 AC 112 ms
20,380 KB
testcase_27 AC 105 ms
20,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
N, *R = map(int, stdin.read().split())

res = 0
mat = 0
while R[mat] != N:
    prc = 0
    for i in range(mat, R[mat]):
        if R[prc] < R[i]:
            prc = i
    mat = prc
    res += 1
print(res + 1)


0