結果

問題 No.2210 equence Squence Seuence
ユーザー ニックネームニックネーム
提出日時 2023-02-10 21:35:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 224 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 29,812 KB
最終ジャッジ日時 2024-07-07 15:46:20
合計ジャッジ時間 5,202 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 96 ms
17,028 KB
testcase_07 AC 212 ms
27,688 KB
testcase_08 WA -
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 27 ms
10,496 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 27 ms
10,624 KB
testcase_13 AC 246 ms
29,548 KB
testcase_14 AC 243 ms
29,680 KB
testcase_15 AC 248 ms
29,688 KB
testcase_16 AC 247 ms
29,420 KB
testcase_17 WA -
testcase_18 AC 29 ms
10,496 KB
testcase_19 AC 29 ms
10,496 KB
testcase_20 WA -
testcase_21 AC 29 ms
10,496 KB
testcase_22 WA -
testcase_23 AC 203 ms
26,732 KB
testcase_24 AC 154 ms
22,596 KB
testcase_25 AC 182 ms
24,804 KB
testcase_26 AC 229 ms
29,812 KB
testcase_27 AC 82 ms
15,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n,k = map(int,input().split())
a = list(map(int,input().split()))
dq = deque([n-1])
for i in range(n-2,-1,-1):
    if a[i]<a[i+1]:dq.append(i)
    else: dq.appendleft(i)
a.pop(dq[k-1])
print(*a)
0