結果

問題 No.2210 equence Squence Seuence
ユーザー minimumminimum
提出日時 2023-02-10 22:00:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 268 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 129,052 KB
最終ジャッジ日時 2024-07-07 16:15:04
合計ジャッジ時間 3,665 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 32 ms
51,328 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 67 ms
83,840 KB
testcase_04 WA -
testcase_05 AC 80 ms
94,592 KB
testcase_06 AC 71 ms
90,368 KB
testcase_07 AC 106 ms
115,968 KB
testcase_08 AC 35 ms
52,224 KB
testcase_09 AC 34 ms
52,224 KB
testcase_10 AC 33 ms
51,584 KB
testcase_11 WA -
testcase_12 AC 33 ms
51,712 KB
testcase_13 AC 120 ms
120,960 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 129 ms
124,468 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 33 ms
51,456 KB
testcase_20 AC 32 ms
52,096 KB
testcase_21 AC 33 ms
51,328 KB
testcase_22 WA -
testcase_23 AC 104 ms
117,376 KB
testcase_24 AC 91 ms
108,288 KB
testcase_25 AC 98 ms
112,384 KB
testcase_26 AC 117 ms
129,052 KB
testcase_27 AC 75 ms
87,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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