結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,864 KB
testcase_01 AC 38 ms
55,284 KB
testcase_02 AC 40 ms
54,496 KB
testcase_03 AC 76 ms
85,684 KB
testcase_04 AC 77 ms
86,948 KB
testcase_05 AC 89 ms
95,408 KB
testcase_06 AC 82 ms
91,028 KB
testcase_07 AC 124 ms
103,072 KB
testcase_08 AC 40 ms
54,504 KB
testcase_09 AC 40 ms
54,140 KB
testcase_10 AC 40 ms
55,272 KB
testcase_11 AC 44 ms
54,916 KB
testcase_12 AC 40 ms
55,548 KB
testcase_13 AC 136 ms
108,324 KB
testcase_14 AC 138 ms
108,308 KB
testcase_15 AC 139 ms
108,396 KB
testcase_16 AC 139 ms
108,540 KB
testcase_17 AC 140 ms
108,248 KB
testcase_18 AC 40 ms
53,800 KB
testcase_19 AC 39 ms
54,968 KB
testcase_20 AC 39 ms
53,888 KB
testcase_21 AC 38 ms
53,884 KB
testcase_22 AC 38 ms
53,728 KB
testcase_23 AC 123 ms
114,660 KB
testcase_24 AC 106 ms
114,700 KB
testcase_25 AC 116 ms
122,260 KB
testcase_26 AC 134 ms
120,988 KB
testcase_27 AC 79 ms
91,144 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