結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
16,256 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 53 ms
19,368 KB
testcase_04 AC 50 ms
17,176 KB
testcase_05 AC 31 ms
11,136 KB
testcase_06 AC 34 ms
12,032 KB
testcase_07 AC 44 ms
14,820 KB
testcase_08 AC 35 ms
13,176 KB
testcase_09 AC 38 ms
14,420 KB
testcase_10 AC 51 ms
18,528 KB
testcase_11 AC 28 ms
10,880 KB
testcase_12 AC 34 ms
12,760 KB
testcase_13 AC 318 ms
15,108 KB
testcase_14 AC 1,251 ms
19,716 KB
testcase_15 AC 577 ms
16,776 KB
testcase_16 AC 48 ms
11,648 KB
testcase_17 AC 85 ms
12,544 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
        ztm.append(i)
    print(res+1)


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

0