結果

問題 No.2210 equence Squence Seuence
ユーザー ShirotsumeShirotsume
提出日時 2023-02-11 00:06:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 411 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 107,304 KB
最終ジャッジ日時 2024-07-07 17:48:14
合計ジャッジ時間 3,743 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,760 KB
testcase_01 AC 37 ms
53,504 KB
testcase_02 AC 38 ms
53,248 KB
testcase_03 AC 73 ms
84,224 KB
testcase_04 WA -
testcase_05 AC 85 ms
92,868 KB
testcase_06 AC 82 ms
89,268 KB
testcase_07 AC 113 ms
100,824 KB
testcase_08 AC 37 ms
53,760 KB
testcase_09 AC 36 ms
53,504 KB
testcase_10 AC 36 ms
53,376 KB
testcase_11 WA -
testcase_12 AC 36 ms
53,504 KB
testcase_13 AC 126 ms
106,596 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 129 ms
106,724 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 35 ms
53,504 KB
testcase_20 AC 35 ms
53,376 KB
testcase_21 AC 36 ms
53,632 KB
testcase_22 WA -
testcase_23 AC 102 ms
102,488 KB
testcase_24 AC 95 ms
102,572 KB
testcase_25 AC 99 ms
105,688 KB
testcase_26 AC 115 ms
107,304 KB
testcase_27 AC 76 ms
86,164 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()

q = deque([n - 1])

for i in range(n - 2, -1, -1):
    if a[i] <= a[i+1]:
        q.append(i)
    else:
        q.appendleft(i)
print(*(a[:q[k-1]] + a[q[k-1]+1:]))
    
0