結果

問題 No.2210 equence Squence Seuence
ユーザー simansiman
提出日時 2023-02-12 07:59:34
言語 Ruby
(3.3.0)
結果
AC  
実行時間 344 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 30,976 KB
最終ジャッジ日時 2024-07-16 02:02:08
合計ジャッジ時間 6,769 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,416 KB
testcase_01 AC 81 ms
12,288 KB
testcase_02 AC 81 ms
12,288 KB
testcase_03 AC 135 ms
15,360 KB
testcase_04 AC 142 ms
15,616 KB
testcase_05 AC 175 ms
18,816 KB
testcase_06 AC 163 ms
18,944 KB
testcase_07 AC 293 ms
28,288 KB
testcase_08 AC 77 ms
12,160 KB
testcase_09 AC 81 ms
12,288 KB
testcase_10 AC 80 ms
12,160 KB
testcase_11 AC 80 ms
12,160 KB
testcase_12 AC 78 ms
12,416 KB
testcase_13 AC 339 ms
30,848 KB
testcase_14 AC 341 ms
30,848 KB
testcase_15 AC 344 ms
30,976 KB
testcase_16 AC 339 ms
30,976 KB
testcase_17 AC 343 ms
30,976 KB
testcase_18 AC 79 ms
12,160 KB
testcase_19 AC 78 ms
12,416 KB
testcase_20 AC 80 ms
12,288 KB
testcase_21 AC 79 ms
12,160 KB
testcase_22 AC 81 ms
12,160 KB
testcase_23 AC 291 ms
28,416 KB
testcase_24 AC 232 ms
22,912 KB
testcase_25 AC 274 ms
27,264 KB
testcase_26 AC 332 ms
30,720 KB
testcase_27 AC 149 ms
15,616 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, K = gets.split.map(&:to_i)
A = gets.split.map(&:to_i)

k = 0
idx = nil
same_cnt = 1

A.each_cons(2).with_index do |(a, na), i|
  if a > na
    k += same_cnt

    if k >= K
      idx ||= i
    end
  end

  if a == na
    same_cnt += 1
  else
    same_cnt = 1
  end
end

k += 1
if k == K
  idx = N - 1
end

A.reverse.each_cons(2).with_index do |(a, na), i|
  if a >= na
    k += 1

    if k == K
      idx = (N - 2) - i
    end
  end
end

A.delete_at(idx)

puts A.join(' ')
0