結果

問題 No.2210 equence Squence Seuence
ユーザー flygonflygon
提出日時 2023-02-10 21:40:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 321 bytes
コンパイル時間 677 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 124,244 KB
最終ジャッジ日時 2024-07-07 15:51:10
合計ジャッジ時間 4,328 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,412 KB
testcase_01 AC 36 ms
52,472 KB
testcase_02 AC 39 ms
53,624 KB
testcase_03 AC 75 ms
84,652 KB
testcase_04 WA -
testcase_05 AC 84 ms
93,756 KB
testcase_06 AC 78 ms
89,644 KB
testcase_07 AC 113 ms
112,344 KB
testcase_08 AC 35 ms
52,404 KB
testcase_09 AC 36 ms
52,260 KB
testcase_10 AC 37 ms
52,540 KB
testcase_11 WA -
testcase_12 AC 35 ms
51,748 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 37 ms
51,876 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 108 ms
113,556 KB
testcase_24 AC 94 ms
104,760 KB
testcase_25 AC 99 ms
109,092 KB
testcase_26 AC 118 ms
124,244 KB
testcase_27 AC 69 ms
86,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
a = list(map(int,input().split()))

ans = -1
for i in range(n-1):
  x,y = a[i], a[i+1]
  if k == 1 and y < x:
    ans = i+1
  elif y < x:
    k -= 1
  if x < y and k == n-i:
    ans = i
  
if ans == -1:
  ans = n-1

b = []
for i in range(n):
  if i != ans:
    b.append(a[i])
  
print(*b)

0