結果

問題 No.2210 equence Squence Seuence
ユーザー chankei271828chankei271828
提出日時 2023-02-10 22:11:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 585 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 122,496 KB
最終ジャッジ日時 2024-07-07 16:24:59
合計ジャッジ時間 3,891 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,144 KB
testcase_01 AC 40 ms
53,632 KB
testcase_02 AC 41 ms
53,760 KB
testcase_03 AC 73 ms
85,632 KB
testcase_04 AC 79 ms
86,612 KB
testcase_05 AC 88 ms
95,488 KB
testcase_06 AC 82 ms
91,176 KB
testcase_07 AC 121 ms
115,072 KB
testcase_08 AC 38 ms
53,632 KB
testcase_09 AC 39 ms
53,760 KB
testcase_10 AC 39 ms
53,760 KB
testcase_11 AC 38 ms
53,504 KB
testcase_12 AC 40 ms
53,888 KB
testcase_13 AC 135 ms
108,104 KB
testcase_14 AC 135 ms
108,032 KB
testcase_15 AC 136 ms
108,124 KB
testcase_16 AC 132 ms
108,288 KB
testcase_17 AC 133 ms
108,416 KB
testcase_18 AC 38 ms
53,876 KB
testcase_19 AC 38 ms
53,632 KB
testcase_20 AC 38 ms
53,376 KB
testcase_21 AC 39 ms
53,760 KB
testcase_22 AC 39 ms
53,760 KB
testcase_23 AC 120 ms
114,688 KB
testcase_24 AC 112 ms
114,812 KB
testcase_25 AC 114 ms
122,496 KB
testcase_26 AC 129 ms
121,472 KB
testcase_27 AC 77 ms
90,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,K=map(int,input().split())
A=list(map(int,input().split()))
d=deque()
ans=[-1]*N
l=0
r=N-1
res=[]
for i in range(N-1):
    if A[i]>A[i+1]:
        res.append(i)
        while res:
            j=res.pop()
            ans[l]=j
            l+=1
    elif A[i]<A[i+1]:
        res.append(i)
        while res:
            j=res.pop()
            ans[r]=j
            r-=1
    else:
        res.append(i)
while res:
    j=res.pop()
    ans[l]=j
    l+=1
ans[l]=N-1
ans_seq=[]
for i in range(N):
    if i!=ans[K-1]:
        ans_seq.append(A[i])
print(*ans_seq)
0