結果

問題 No.2210 equence Squence Seuence
ユーザー とりゐとりゐ
提出日時 2023-02-10 23:46:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 384 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 134,828 KB
最終ジャッジ日時 2024-07-07 17:36:46
合計ジャッジ時間 4,138 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 73 ms
84,992 KB
testcase_04 AC 75 ms
87,680 KB
testcase_05 AC 81 ms
88,192 KB
testcase_06 AC 82 ms
90,240 KB
testcase_07 AC 120 ms
100,444 KB
testcase_08 AC 36 ms
51,968 KB
testcase_09 AC 37 ms
51,748 KB
testcase_10 AC 36 ms
51,968 KB
testcase_11 AC 34 ms
52,096 KB
testcase_12 AC 36 ms
51,584 KB
testcase_13 AC 137 ms
106,456 KB
testcase_14 AC 141 ms
108,120 KB
testcase_15 AC 139 ms
108,240 KB
testcase_16 AC 139 ms
106,836 KB
testcase_17 AC 140 ms
106,968 KB
testcase_18 AC 36 ms
51,840 KB
testcase_19 AC 35 ms
51,968 KB
testcase_20 AC 35 ms
52,352 KB
testcase_21 AC 37 ms
52,096 KB
testcase_22 AC 36 ms
51,968 KB
testcase_23 AC 117 ms
122,468 KB
testcase_24 AC 100 ms
110,464 KB
testcase_25 AC 108 ms
116,736 KB
testcase_26 AC 130 ms
134,828 KB
testcase_27 AC 74 ms
89,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=list(map(int,input().split()))
front=[]
back=[]
res=[]
for i in range(n-1):
  if a[i]<a[i+1]:
    res.append(i)
    for j in res:
      back.append(j)
    res=[]
  elif a[i]>a[i+1]:
    res.append(i)
    for j in res:
      front.append(j)
    res=[]
  else:
    res.append(i)


ord=front+res+[n-1]+back[::-1]
ng=ord[k-1]
ans=a[:ng]+a[ng+1:]
print(*ans)
0