結果

問題 No.2210 equence Squence Seuence
ユーザー simansiman
提出日時 2023-02-12 07:53:07
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 390 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 31,232 KB
最終ジャッジ日時 2024-07-16 01:57:42
合計ジャッジ時間 7,599 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,160 KB
testcase_01 AC 90 ms
12,160 KB
testcase_02 AC 82 ms
12,288 KB
testcase_03 AC 146 ms
15,360 KB
testcase_04 WA -
testcase_05 AC 180 ms
18,816 KB
testcase_06 AC 166 ms
18,944 KB
testcase_07 AC 285 ms
28,416 KB
testcase_08 AC 79 ms
12,288 KB
testcase_09 AC 80 ms
12,160 KB
testcase_10 AC 80 ms
12,160 KB
testcase_11 WA -
testcase_12 AC 81 ms
12,416 KB
testcase_13 AC 342 ms
30,976 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 346 ms
30,976 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 81 ms
12,288 KB
testcase_20 AC 81 ms
12,160 KB
testcase_21 AC 87 ms
12,160 KB
testcase_22 WA -
testcase_23 AC 293 ms
28,416 KB
testcase_24 AC 247 ms
22,912 KB
testcase_25 AC 267 ms
27,392 KB
testcase_26 AC 330 ms
30,720 KB
testcase_27 AC 145 ms
15,616 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

k = 0
idx = -1

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

    if k == K
      idx = i
    end
  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