結果

問題 No.2210 equence Squence Seuence
ユーザー flygonflygon
提出日時 2023-02-10 23:03:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 356 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 123,904 KB
最終ジャッジ日時 2024-07-07 17:05:46
合計ジャッジ時間 3,668 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,224 KB
testcase_01 AC 33 ms
52,224 KB
testcase_02 AC 34 ms
51,968 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 72 ms
89,480 KB
testcase_07 AC 106 ms
115,840 KB
testcase_08 WA -
testcase_09 AC 34 ms
52,096 KB
testcase_10 AC 34 ms
52,224 KB
testcase_11 AC 33 ms
51,968 KB
testcase_12 AC 32 ms
51,968 KB
testcase_13 AC 116 ms
121,936 KB
testcase_14 AC 120 ms
121,728 KB
testcase_15 AC 119 ms
122,216 KB
testcase_16 AC 117 ms
121,600 KB
testcase_17 WA -
testcase_18 AC 33 ms
52,224 KB
testcase_19 AC 33 ms
52,224 KB
testcase_20 WA -
testcase_21 AC 32 ms
52,096 KB
testcase_22 WA -
testcase_23 AC 101 ms
113,792 KB
testcase_24 AC 92 ms
104,960 KB
testcase_25 AC 97 ms
109,028 KB
testcase_26 AC 111 ms
123,904 KB
testcase_27 AC 67 ms
86,528 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
  elif y <= x:
    k = max(1, 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