結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,068 KB
testcase_01 AC 36 ms
53,320 KB
testcase_02 AC 37 ms
52,088 KB
testcase_03 AC 72 ms
84,156 KB
testcase_04 WA -
testcase_05 AC 84 ms
93,552 KB
testcase_06 AC 79 ms
89,284 KB
testcase_07 AC 116 ms
115,828 KB
testcase_08 AC 37 ms
52,756 KB
testcase_09 AC 37 ms
53,716 KB
testcase_10 AC 37 ms
52,384 KB
testcase_11 WA -
testcase_12 AC 36 ms
52,224 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 36 ms
52,364 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 109 ms
113,840 KB
testcase_24 AC 97 ms
104,456 KB
testcase_25 AC 102 ms
108,872 KB
testcase_26 AC 122 ms
124,136 KB
testcase_27 AC 69 ms
86,780 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:
    break
  
if ans == -1:
  ans = n-1

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

0