結果

問題 No.2210 equence Squence Seuence
ユーザー katonyonkokatonyonko
提出日時 2023-02-10 21:57:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 81,832 KB
実行使用メモリ 106,892 KB
最終ジャッジ日時 2024-07-07 16:11:50
合計ジャッジ時間 4,001 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,016 KB
testcase_01 AC 36 ms
53,376 KB
testcase_02 AC 40 ms
53,376 KB
testcase_03 AC 100 ms
82,684 KB
testcase_04 AC 94 ms
83,200 KB
testcase_05 AC 92 ms
87,936 KB
testcase_06 AC 82 ms
89,728 KB
testcase_07 AC 136 ms
100,096 KB
testcase_08 AC 38 ms
53,376 KB
testcase_09 AC 36 ms
53,760 KB
testcase_10 AC 38 ms
53,504 KB
testcase_11 AC 38 ms
53,504 KB
testcase_12 AC 38 ms
53,504 KB
testcase_13 AC 153 ms
106,368 KB
testcase_14 AC 150 ms
106,368 KB
testcase_15 AC 152 ms
106,496 KB
testcase_16 AC 149 ms
106,368 KB
testcase_17 AC 143 ms
106,496 KB
testcase_18 AC 38 ms
53,376 KB
testcase_19 AC 37 ms
53,120 KB
testcase_20 AC 37 ms
53,376 KB
testcase_21 AC 37 ms
53,632 KB
testcase_22 AC 37 ms
53,376 KB
testcase_23 AC 109 ms
102,016 KB
testcase_24 AC 100 ms
97,280 KB
testcase_25 AC 104 ms
100,096 KB
testcase_26 AC 128 ms
106,892 KB
testcase_27 AC 76 ms
88,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import sys
def input():
  return sys.stdin.readline()[:-1]
N,K=map(int,input().split())
A=list(map(int,input().split()))
front=deque()
back=deque()
tmp=1
flg=0
for i in range(N-1):
  if A[i]>A[i+1]:
    for j in range(tmp):
      front.append(i)
    if i==N-2: back.appendleft(N-1)
    tmp=1
    flg=0
  elif A[i]<A[i+1]:
    for j in range(tmp):
      back.appendleft(i)
    if i==N-2: front.append(N-1)
    tmp=1
    flg=1
  else:
    tmp+=1
    if i==N-2:
      for j in range(tmp):
        if flg==0: back.appendleft(N-1)
        else: back.append(N-1)
k=(front+back)[K-1]
ans=[A[i] for i in range(N) if i!=k]
print(*ans)
0