結果

問題 No.2210 equence Squence Seuence
ユーザー とりゐとりゐ
提出日時 2023-02-10 23:55:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 372 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 107,136 KB
最終ジャッジ日時 2024-07-07 17:42:03
合計ジャッジ時間 3,972 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,120 KB
testcase_01 AC 37 ms
53,376 KB
testcase_02 AC 35 ms
52,992 KB
testcase_03 AC 74 ms
84,096 KB
testcase_04 AC 79 ms
85,504 KB
testcase_05 AC 87 ms
92,672 KB
testcase_06 AC 85 ms
88,960 KB
testcase_07 AC 120 ms
100,480 KB
testcase_08 AC 37 ms
53,504 KB
testcase_09 AC 37 ms
53,504 KB
testcase_10 AC 41 ms
53,376 KB
testcase_11 AC 41 ms
53,504 KB
testcase_12 AC 40 ms
53,248 KB
testcase_13 AC 136 ms
106,496 KB
testcase_14 AC 131 ms
106,240 KB
testcase_15 AC 134 ms
106,368 KB
testcase_16 AC 130 ms
106,752 KB
testcase_17 AC 133 ms
106,112 KB
testcase_18 AC 40 ms
53,120 KB
testcase_19 AC 36 ms
53,760 KB
testcase_20 AC 37 ms
53,120 KB
testcase_21 AC 38 ms
53,120 KB
testcase_22 AC 37 ms
53,376 KB
testcase_23 AC 106 ms
101,632 KB
testcase_24 AC 98 ms
101,120 KB
testcase_25 AC 107 ms
105,984 KB
testcase_26 AC 116 ms
107,136 KB
testcase_27 AC 75 ms
86,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n,k=map(int,input().split())
a=list(map(int,input().split()))
dq=deque()
dq.append(n-1)
top=True
for i in range(n-2,-1,-1):
  if a[i]<a[i+1]:
    dq.append(i)
    top=False
  elif a[i]>a[i+1]:
    dq.appendleft(i)
    top=True
  else:
    if top:
      dq.appendleft(i)
    else:
      dq.append(i)

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