結果

問題 No.2777 Wild Flush
ユーザー ducktailducktail
提出日時 2024-06-23 17:26:09
言語 Ruby
(3.3.0)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 20,608 KB
最終ジャッジ日時 2024-06-23 17:26:18
合計ジャッジ時間 6,335 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,288 KB
testcase_01 AC 86 ms
12,160 KB
testcase_02 AC 87 ms
12,160 KB
testcase_03 AC 92 ms
12,288 KB
testcase_04 AC 89 ms
12,288 KB
testcase_05 AC 89 ms
12,416 KB
testcase_06 AC 90 ms
12,288 KB
testcase_07 AC 91 ms
12,160 KB
testcase_08 AC 86 ms
12,416 KB
testcase_09 AC 186 ms
20,352 KB
testcase_10 AC 188 ms
20,352 KB
testcase_11 AC 197 ms
20,480 KB
testcase_12 AC 229 ms
20,608 KB
testcase_13 AC 208 ms
20,352 KB
testcase_14 AC 210 ms
20,480 KB
testcase_15 AC 220 ms
20,480 KB
testcase_16 AC 100 ms
13,184 KB
testcase_17 AC 204 ms
19,968 KB
testcase_18 AC 172 ms
17,792 KB
testcase_19 AC 171 ms
17,792 KB
testcase_20 AC 117 ms
14,464 KB
testcase_21 AC 108 ms
13,568 KB
testcase_22 AC 166 ms
17,536 KB
testcase_23 AC 187 ms
17,408 KB
testcase_24 AC 172 ms
18,304 KB
testcase_25 AC 210 ms
20,352 KB
testcase_26 AC 199 ms
19,456 KB
testcase_27 AC 147 ms
16,128 KB
testcase_28 AC 104 ms
13,696 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

module WildFlush
  def solve(n, k, a)
    ac = Array.new(n + 1, 0)
    a.each do |x|
      ac[x] += 1
    end
    ac[1..n].find{|x| x + ac[0] >= k} ? :Yes : :No
  end
  module_function :solve
end

n, k = gets.chomp.split(/\s+/).map(&:to_i)
aa = gets.chomp.split(/\s+/).map(&:to_i)
  
puts WildFlush.solve(n, k, aa)
0