結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,252 KB
testcase_01 AC 39 ms
54,296 KB
testcase_02 AC 38 ms
53,752 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 82 ms
89,008 KB
testcase_07 AC 118 ms
100,932 KB
testcase_08 WA -
testcase_09 AC 37 ms
55,108 KB
testcase_10 AC 38 ms
53,396 KB
testcase_11 AC 39 ms
54,224 KB
testcase_12 AC 39 ms
53,760 KB
testcase_13 AC 131 ms
106,484 KB
testcase_14 AC 130 ms
106,652 KB
testcase_15 AC 133 ms
106,504 KB
testcase_16 AC 131 ms
106,748 KB
testcase_17 WA -
testcase_18 AC 39 ms
54,528 KB
testcase_19 AC 39 ms
53,860 KB
testcase_20 WA -
testcase_21 AC 40 ms
53,896 KB
testcase_22 WA -
testcase_23 AC 104 ms
102,320 KB
testcase_24 AC 93 ms
101,548 KB
testcase_25 AC 102 ms
106,340 KB
testcase_26 AC 116 ms
107,368 KB
testcase_27 AC 73 ms
86,272 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