結果

問題 No.1868 Teleporting Cyanmond
ユーザー nariyelnariyel
提出日時 2022-03-11 22:03:45
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 455 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 269,408 KB
最終ジャッジ日時 2024-09-16 02:20:32
合計ジャッジ時間 6,142 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,808 KB
testcase_01 AC 63 ms
66,560 KB
testcase_02 AC 62 ms
66,560 KB
testcase_03 AC 84 ms
88,704 KB
testcase_04 AC 86 ms
82,560 KB
testcase_05 AC 68 ms
68,352 KB
testcase_06 AC 69 ms
71,296 KB
testcase_07 AC 75 ms
77,696 KB
testcase_08 AC 72 ms
73,856 KB
testcase_09 AC 75 ms
76,928 KB
testcase_10 AC 87 ms
87,168 KB
testcase_11 AC 67 ms
67,328 KB
testcase_12 AC 71 ms
72,448 KB
testcase_13 AC 212 ms
154,240 KB
testcase_14 AC 353 ms
174,708 KB
testcase_15 AC 221 ms
172,344 KB
testcase_16 AC 80 ms
77,696 KB
testcase_17 AC 89 ms
80,896 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