結果

問題 No.2210 equence Squence Seuence
ユーザー ShirotsumeShirotsume
提出日時 2022-11-25 21:16:33
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 455 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 81,772 KB
実行使用メモリ 140,044 KB
最終ジャッジ日時 2024-10-05 03:51:08
合計ジャッジ時間 3,883 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,108 KB
testcase_01 AC 31 ms
52,180 KB
testcase_02 AC 33 ms
53,616 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 73 ms
93,200 KB
testcase_07 AC 118 ms
123,160 KB
testcase_08 WA -
testcase_09 AC 32 ms
52,564 KB
testcase_10 AC 33 ms
52,772 KB
testcase_11 AC 32 ms
52,704 KB
testcase_12 AC 34 ms
52,260 KB
testcase_13 AC 130 ms
121,216 KB
testcase_14 AC 129 ms
121,540 KB
testcase_15 AC 128 ms
121,564 KB
testcase_16 AC 126 ms
121,280 KB
testcase_17 WA -
testcase_18 AC 33 ms
52,884 KB
testcase_19 AC 32 ms
51,996 KB
testcase_20 WA -
testcase_21 AC 32 ms
53,408 KB
testcase_22 WA -
testcase_23 AC 111 ms
126,876 KB
testcase_24 AC 99 ms
114,736 KB
testcase_25 AC 104 ms
120,304 KB
testcase_26 AC 126 ms
140,044 KB
testcase_27 AC 68 ms
90,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n, k, p):
    top = []
    bottom = []

    p.append(0)

    for i in range(n):
        if p[i] < p[i + 1]:
            top.append(i)
        else:
            bottom.append(i)
    q = top + bottom[::-1]
    ind = q[n - k]
    ans = []
    for i in range(n):
        if i == ind:
            continue
        ans.append(p[i])
    p.pop()
    return ans

n, k = map(int,input().split())

p = list(map(int,input().split()))

print(*solve(n, k, p))
0