結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,888 KB
testcase_01 AC 36 ms
52,736 KB
testcase_02 AC 35 ms
53,216 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 79 ms
93,132 KB
testcase_07 AC 117 ms
123,156 KB
testcase_08 WA -
testcase_09 AC 34 ms
52,860 KB
testcase_10 AC 33 ms
52,760 KB
testcase_11 AC 32 ms
52,204 KB
testcase_12 AC 33 ms
53,152 KB
testcase_13 AC 130 ms
121,496 KB
testcase_14 AC 128 ms
121,468 KB
testcase_15 AC 134 ms
120,992 KB
testcase_16 AC 129 ms
121,220 KB
testcase_17 WA -
testcase_18 AC 34 ms
52,804 KB
testcase_19 AC 33 ms
52,120 KB
testcase_20 WA -
testcase_21 AC 33 ms
53,252 KB
testcase_22 WA -
testcase_23 AC 109 ms
127,072 KB
testcase_24 AC 99 ms
114,544 KB
testcase_25 AC 107 ms
120,480 KB
testcase_26 AC 126 ms
139,896 KB
testcase_27 AC 69 ms
89,976 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