結果

問題 No.2210 equence Squence Seuence
ユーザー tassei903tassei903
提出日時 2023-02-11 01:43:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 508 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 132,608 KB
最終ジャッジ日時 2024-07-07 18:49:35
合計ジャッジ時間 3,746 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 36 ms
51,584 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 76 ms
91,520 KB
testcase_07 AC 114 ms
118,016 KB
testcase_08 WA -
testcase_09 AC 36 ms
51,584 KB
testcase_10 AC 37 ms
51,712 KB
testcase_11 AC 36 ms
52,096 KB
testcase_12 AC 39 ms
51,968 KB
testcase_13 AC 128 ms
122,624 KB
testcase_14 AC 128 ms
124,800 KB
testcase_15 AC 132 ms
129,664 KB
testcase_16 AC 130 ms
122,624 KB
testcase_17 WA -
testcase_18 AC 34 ms
51,584 KB
testcase_19 AC 35 ms
51,584 KB
testcase_20 WA -
testcase_21 AC 35 ms
51,968 KB
testcase_22 WA -
testcase_23 AC 109 ms
120,832 KB
testcase_24 AC 94 ms
109,056 KB
testcase_25 AC 104 ms
115,200 KB
testcase_26 AC 121 ms
132,608 KB
testcase_27 AC 69 ms
89,016 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 = []
for i in range(n-1):
    if a[i] >= a[i+1]:
        l.append(i)
    else:
        r.append(i)
ans = l + [n-1] + r[::-1]

x = ans[k-1]
print(*(a[:x] + a[x+1:]))
0