結果

問題 No.2210 equence Squence Seuence
ユーザー titiatitia
提出日時 2023-02-10 21:37:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 550 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 31,052 KB
最終ジャッジ日時 2024-07-07 15:49:11
合計ジャッジ時間 4,714 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 98 ms
15,892 KB
testcase_05 WA -
testcase_06 AC 116 ms
17,296 KB
testcase_07 AC 257 ms
26,764 KB
testcase_08 WA -
testcase_09 AC 27 ms
10,496 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 28 ms
10,624 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 302 ms
30,952 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 312 ms
30,692 KB
testcase_17 AC 313 ms
30,952 KB
testcase_18 AC 28 ms
10,624 KB
testcase_19 AC 28 ms
10,496 KB
testcase_20 AC 29 ms
10,496 KB
testcase_21 AC 29 ms
10,496 KB
testcase_22 WA -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,K=map(int,input().split())
A=list(map(int,input().split()))


ANS=[-1]*N

last=N-1
first=0

for i in range(N-1):
    if A[i]>A[i+1]:
        ANS[first]=i
        first+=1

        while i-1>=0 and A[i]==A[i-1]:
            i-=1
            ANS[first]=i
            first+=1
    else:
        ANS[last]=i
        last-=1


        while i-1>=0 and A[i]==A[i-1]:
            i-=1
            ANS[last]=i
            last+=1
        
x=ANS[K-1]

if x==-1:
    print(*A[:-1])
else:
    print(*A[:x]+A[x+1:])
    
0