結果

問題 No.2210 equence Squence Seuence
ユーザー ShirotsumeShirotsume
提出日時 2023-01-09 08:26:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 678 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 122,692 KB
最終ジャッジ日時 2024-05-09 19:33:33
合計ジャッジ時間 5,526 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 41 ms
53,504 KB
testcase_02 AC 40 ms
53,492 KB
testcase_03 AC 76 ms
86,000 KB
testcase_04 AC 81 ms
86,760 KB
testcase_05 AC 95 ms
95,828 KB
testcase_06 AC 86 ms
91,392 KB
testcase_07 AC 127 ms
103,168 KB
testcase_08 AC 39 ms
55,184 KB
testcase_09 AC 39 ms
54,912 KB
testcase_10 AC 39 ms
55,748 KB
testcase_11 AC 40 ms
54,216 KB
testcase_12 AC 40 ms
55,448 KB
testcase_13 AC 140 ms
108,232 KB
testcase_14 AC 144 ms
108,088 KB
testcase_15 AC 145 ms
108,144 KB
testcase_16 AC 141 ms
108,212 KB
testcase_17 AC 141 ms
108,256 KB
testcase_18 AC 41 ms
54,216 KB
testcase_19 AC 39 ms
54,596 KB
testcase_20 AC 40 ms
54,148 KB
testcase_21 AC 40 ms
54,332 KB
testcase_22 AC 40 ms
54,208 KB
testcase_23 AC 127 ms
115,148 KB
testcase_24 AC 111 ms
114,968 KB
testcase_25 AC 121 ms
122,692 KB
testcase_26 AC 137 ms
121,316 KB
testcase_27 AC 82 ms
91,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

n, k = mi()
a = li()

p = [-1] * n
q = []

l = 0
r = n - 1
for i in range(n-1):
    q.append(i)
    if a[i] == a[i+1]:
        continue
    if a[i] < a[i+1]:
        while q:
            p[r] = q.pop()
            r -= 1
    if a[i] > a[i+1]:
        while q:
            p[l] = q.pop()
            l += 1
q.append(n-1)
while q:
    p[l] = q.pop()
    l += 1

ans = []
for i in range(n):
    if i == p[k-1]:
        continue
    ans.append(a[i])
print(*ans)
0