結果

問題 No.2210 equence Squence Seuence
ユーザー tassei903tassei903
提出日時 2023-02-11 01:59:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 713 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 134,784 KB
最終ジャッジ日時 2024-07-07 19:01:11
合計ジャッジ時間 4,149 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 79 ms
85,376 KB
testcase_04 AC 82 ms
87,296 KB
testcase_05 AC 87 ms
88,320 KB
testcase_06 AC 86 ms
90,112 KB
testcase_07 AC 126 ms
100,676 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 38 ms
52,096 KB
testcase_10 AC 38 ms
52,096 KB
testcase_11 AC 38 ms
52,224 KB
testcase_12 AC 38 ms
51,968 KB
testcase_13 AC 147 ms
105,984 KB
testcase_14 AC 144 ms
107,468 KB
testcase_15 AC 145 ms
107,872 KB
testcase_16 AC 142 ms
106,240 KB
testcase_17 AC 142 ms
106,432 KB
testcase_18 AC 38 ms
52,224 KB
testcase_19 AC 38 ms
52,096 KB
testcase_20 AC 39 ms
51,968 KB
testcase_21 AC 37 ms
52,096 KB
testcase_22 AC 37 ms
51,968 KB
testcase_23 AC 118 ms
122,880 KB
testcase_24 AC 105 ms
110,336 KB
testcase_25 AC 112 ms
116,736 KB
testcase_26 AC 136 ms
134,784 KB
testcase_27 AC 81 ms
89,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

n, k = na()

a = na()
l = []
r = []
f = []
for i in range(n-1):
    f.append(i)
    if a[i] > a[i+1]:
        for j in f:
            l.append(j)
        f = []
    elif a[i] < a[i+1]:
        for j in f:
            r.append(j)
        f = []
    
ans = l + f+[n-1] + r[::-1]

x = ans[k-1]
print(*(a[:x] + a[x+1:]))
#print(ans)
#print([i[1] for i in sorted([(a[:i] + a[i+1:],i) for i in range(n)])])
0