結果

問題 No.2210 equence Squence Seuence
ユーザー tktk_snsntktk_snsn
提出日時 2023-02-11 19:49:19
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 285 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 106,880 KB
最終ジャッジ日時 2024-07-08 07:04:32
合計ジャッジ時間 3,882 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 38 ms
53,120 KB
testcase_02 AC 39 ms
53,120 KB
testcase_03 AC 82 ms
83,968 KB
testcase_04 AC 85 ms
84,992 KB
testcase_05 AC 87 ms
89,088 KB
testcase_06 AC 87 ms
87,552 KB
testcase_07 AC 119 ms
99,840 KB
testcase_08 AC 40 ms
53,120 KB
testcase_09 AC 41 ms
53,632 KB
testcase_10 AC 39 ms
53,376 KB
testcase_11 AC 40 ms
53,376 KB
testcase_12 AC 42 ms
53,504 KB
testcase_13 AC 139 ms
106,880 KB
testcase_14 AC 135 ms
106,496 KB
testcase_15 AC 135 ms
106,368 KB
testcase_16 AC 136 ms
106,496 KB
testcase_17 AC 138 ms
106,496 KB
testcase_18 AC 41 ms
53,248 KB
testcase_19 AC 40 ms
53,248 KB
testcase_20 AC 40 ms
53,376 KB
testcase_21 AC 39 ms
53,376 KB
testcase_22 AC 39 ms
53,248 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


N, K = map(int, input().split())
A = list(map(int, input().split()))

D = deque([N-1])
for i in reversed(range(N-1)):
    if A[i] > A[i+1]:
        func = D.appendleft
    elif A[i] < A[i+1]:
        func = D.append
    func(i)


del A[D[K-1]]
print(*A)
0