結果

問題 No.1868 Teleporting Cyanmond
ユーザー nariyelnariyel
提出日時 2022-03-11 22:03:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 455 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 25,584 KB
最終ジャッジ日時 2024-09-16 02:20:12
合計ジャッジ時間 7,191 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
16,128 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 60 ms
19,244 KB
testcase_04 AC 54 ms
17,172 KB
testcase_05 AC 34 ms
11,008 KB
testcase_06 AC 37 ms
12,032 KB
testcase_07 AC 45 ms
14,680 KB
testcase_08 AC 41 ms
13,176 KB
testcase_09 AC 44 ms
14,412 KB
testcase_10 AC 60 ms
18,284 KB
testcase_11 AC 33 ms
11,008 KB
testcase_12 AC 39 ms
12,628 KB
testcase_13 AC 354 ms
15,104 KB
testcase_14 AC 1,350 ms
19,708 KB
testcase_15 AC 623 ms
16,736 KB
testcase_16 AC 52 ms
11,776 KB
testcase_17 AC 93 ms
12,416 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
import threading
threading.stack_size(10 ** 8)

def main():
    N, *R = map(int, stdin.read().split())
    i = R[0]
    ztm = []
    ztm.append(i)
    res = 0
    while i != N:
        i = max(R[:i])
        if i in ztm:
            maxindex = rindex(R[:i])
            R[maxindex] = 0
        else:
            res += 1
    print(res+1)


if __name__ == "__main__":
    t = threading.Thread(target=main)
    t.start()
    t.join()

0