結果

問題 No.2210 equence Squence Seuence
ユーザー titiatitia
提出日時 2023-02-10 21:46:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 31,180 KB
最終ジャッジ日時 2024-07-07 15:59:09
合計ジャッジ時間 5,188 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 94 ms
16,108 KB
testcase_04 AC 96 ms
16,120 KB
testcase_05 AC 131 ms
18,624 KB
testcase_06 AC 124 ms
17,568 KB
testcase_07 AC 260 ms
27,912 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 27 ms
10,880 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 317 ms
31,164 KB
testcase_14 AC 316 ms
31,056 KB
testcase_15 AC 318 ms
31,112 KB
testcase_16 AC 312 ms
31,180 KB
testcase_17 AC 315 ms
31,116 KB
testcase_18 AC 27 ms
10,624 KB
testcase_19 AC 27 ms
10,752 KB
testcase_20 AC 28 ms
10,752 KB
testcase_21 AC 28 ms
10,624 KB
testcase_22 AC 28 ms
10,624 KB
testcase_23 AC 211 ms
25,832 KB
testcase_24 AC 159 ms
22,904 KB
testcase_25 AC 193 ms
24,916 KB
testcase_26 AC 246 ms
29,988 KB
testcase_27 AC 89 ms
16,188 KB
権限があれば一括ダウンロードができます

ソースコード

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
    elif A[i]<A[i+1]:
        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