結果

問題 No.2210 equence Squence Seuence
ユーザー minimumminimum
提出日時 2023-02-10 21:55:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 240 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 129,316 KB
最終ジャッジ日時 2024-07-07 16:10:24
合計ジャッジ時間 3,742 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,596 KB
testcase_01 AC 39 ms
52,580 KB
testcase_02 AC 34 ms
53,184 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 33 ms
52,376 KB
testcase_19 AC 33 ms
53,324 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 102 ms
117,808 KB
testcase_24 AC 89 ms
106,864 KB
testcase_25 AC 96 ms
112,536 KB
testcase_26 AC 115 ms
129,316 KB
testcase_27 AC 65 ms
87,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
L, R = [0], []
for i in range(1, N):
    if A[i - 1] <= A[i]:
        L.append(i)
    else:
        R.append(i)
L += R
pos = L[K - 1]
ans = A[:pos] + A[pos+1:]
print(*ans)
0