結果

問題 No.2210 equence Squence Seuence
ユーザー ShirotsumeShirotsume
提出日時 2023-02-11 00:15:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 107,132 KB
最終ジャッジ日時 2024-07-07 17:50:03
合計ジャッジ時間 3,676 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
55,044 KB
testcase_01 AC 34 ms
54,000 KB
testcase_02 AC 33 ms
53,876 KB
testcase_03 AC 62 ms
84,744 KB
testcase_04 AC 71 ms
86,096 KB
testcase_05 AC 77 ms
92,768 KB
testcase_06 AC 72 ms
89,528 KB
testcase_07 AC 103 ms
100,756 KB
testcase_08 AC 35 ms
54,440 KB
testcase_09 AC 35 ms
54,044 KB
testcase_10 AC 34 ms
55,028 KB
testcase_11 AC 33 ms
55,308 KB
testcase_12 AC 34 ms
54,128 KB
testcase_13 AC 114 ms
106,720 KB
testcase_14 AC 117 ms
106,624 KB
testcase_15 AC 117 ms
107,132 KB
testcase_16 AC 118 ms
106,848 KB
testcase_17 AC 121 ms
106,576 KB
testcase_18 AC 35 ms
54,580 KB
testcase_19 AC 33 ms
54,544 KB
testcase_20 AC 33 ms
54,732 KB
testcase_21 AC 33 ms
54,332 KB
testcase_22 AC 33 ms
53,844 KB
testcase_23 AC 92 ms
102,528 KB
testcase_24 AC 87 ms
102,972 KB
testcase_25 AC 92 ms
105,968 KB
testcase_26 AC 103 ms
107,076 KB
testcase_27 AC 66 ms
86,288 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])
prev = 0
for i in range(n - 2, -1, -1):
    if a[i] < a[i+1]:
        q.append(i)
        prev = 0
    elif a[i] > a[i+1]:
        q.appendleft(i)
        prev = 1
    elif prev:
        q.appendleft(i)
    else:
        q.append(i)


print(*(a[:q[k-1]] + a[q[k-1]+1:]))
    
0