結果

問題 No.2210 equence Squence Seuence
ユーザー vwxyzvwxyz
提出日時 2023-09-11 06:30:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 375 ms / 2,000 ms
コード長 423 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 34,788 KB
最終ジャッジ日時 2024-06-28 20:42:33
合計ジャッジ時間 6,692 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 101 ms
16,752 KB
testcase_04 AC 113 ms
16,512 KB
testcase_05 AC 155 ms
19,400 KB
testcase_06 AC 137 ms
18,464 KB
testcase_07 AC 309 ms
30,356 KB
testcase_08 AC 31 ms
10,496 KB
testcase_09 AC 29 ms
10,496 KB
testcase_10 AC 30 ms
10,496 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 30 ms
10,496 KB
testcase_13 AC 371 ms
34,408 KB
testcase_14 AC 374 ms
34,788 KB
testcase_15 AC 374 ms
34,376 KB
testcase_16 AC 369 ms
34,248 KB
testcase_17 AC 375 ms
34,020 KB
testcase_18 AC 30 ms
10,496 KB
testcase_19 AC 30 ms
10,624 KB
testcase_20 AC 29 ms
10,624 KB
testcase_21 AC 29 ms
10,624 KB
testcase_22 AC 29 ms
10,496 KB
testcase_23 AC 247 ms
28,256 KB
testcase_24 AC 196 ms
23,840 KB
testcase_25 AC 226 ms
26,096 KB
testcase_26 AC 292 ms
31,572 KB
testcase_27 AC 101 ms
16,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

N,K=map(int,readline().split())
K-=1
A=list(map(int,readline().split()))
L,R=[],[]
l=0
for r in range(1,N):
    if A[r-1]<A[r]:
        for i in range(l,r):
            R.append(i)
        l=r
    elif A[r-1]>A[r]:
        for i in range(l,r):
            L.append(i)
        l=r
lst=L+[i for i in range(l,N)]+R[::-1]
j=lst[K]
ans_lst=[A[i] for i in range(N) if i!=j]
print(*ans_lst)
0