結果

問題 No.2210 equence Squence Seuence
ユーザー tktk_snsntktk_snsn
提出日時 2023-02-11 11:20:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 251 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 30,068 KB
最終ジャッジ日時 2024-07-08 01:47:26
合計ジャッジ時間 4,838 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 27 ms
10,496 KB
testcase_03 AC 73 ms
15,544 KB
testcase_04 WA -
testcase_05 AC 107 ms
17,920 KB
testcase_06 AC 96 ms
16,800 KB
testcase_07 AC 202 ms
27,844 KB
testcase_08 AC 27 ms
10,368 KB
testcase_09 AC 26 ms
10,496 KB
testcase_10 AC 26 ms
10,368 KB
testcase_11 WA -
testcase_12 AC 26 ms
10,368 KB
testcase_13 AC 247 ms
29,432 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 249 ms
29,448 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 28 ms
10,624 KB
testcase_20 AC 28 ms
10,624 KB
testcase_21 AC 26 ms
10,624 KB
testcase_22 WA -
testcase_23 AC 200 ms
26,732 KB
testcase_24 AC 151 ms
22,596 KB
testcase_25 AC 176 ms
24,932 KB
testcase_26 AC 233 ms
30,068 KB
testcase_27 AC 85 ms
15,920 KB
権限があれば一括ダウンロードができます

ソースコード

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]:
        D.appendleft(i)
    else:
        D.append(i)

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