結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,288 KB
testcase_01 AC 86 ms
12,160 KB
testcase_02 AC 82 ms
12,160 KB
testcase_03 AC 138 ms
15,360 KB
testcase_04 AC 146 ms
15,488 KB
testcase_05 AC 183 ms
18,944 KB
testcase_06 AC 167 ms
18,944 KB
testcase_07 AC 303 ms
28,288 KB
testcase_08 AC 83 ms
12,288 KB
testcase_09 AC 83 ms
12,416 KB
testcase_10 AC 83 ms
12,416 KB
testcase_11 AC 82 ms
12,160 KB
testcase_12 AC 80 ms
12,288 KB
testcase_13 AC 349 ms
31,232 KB
testcase_14 AC 344 ms
30,848 KB
testcase_15 AC 346 ms
30,848 KB
testcase_16 AC 347 ms
30,848 KB
testcase_17 AC 347 ms
30,976 KB
testcase_18 AC 80 ms
12,160 KB
testcase_19 WA -
testcase_20 AC 81 ms
12,288 KB
testcase_21 AC 81 ms
12,160 KB
testcase_22 AC 82 ms
12,160 KB
testcase_23 AC 289 ms
28,288 KB
testcase_24 AC 238 ms
22,784 KB
testcase_25 AC 269 ms
27,392 KB
testcase_26 AC 333 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 = -1
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