結果

問題 No.106 素数が嫌い!2
ユーザー code-devocode-devo
提出日時 2016-01-20 08:13:06
言語 Ruby
(3.4.1)
結果
AC  
実行時間 1,626 ms / 5,000 ms
コード長 189 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 7,168 KB
実行使用メモリ 43,556 KB
最終ジャッジ日時 2024-12-26 16:41:07
合計ジャッジ時間 13,273 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 711 ms
32,092 KB
testcase_01 AC 103 ms
12,416 KB
testcase_02 AC 107 ms
12,160 KB
testcase_03 AC 105 ms
12,288 KB
testcase_04 AC 764 ms
31,520 KB
testcase_05 AC 1,287 ms
37,152 KB
testcase_06 AC 1,311 ms
37,188 KB
testcase_07 AC 1,324 ms
37,084 KB
testcase_08 AC 190 ms
14,720 KB
testcase_09 AC 171 ms
13,952 KB
testcase_10 AC 1,542 ms
37,312 KB
testcase_11 AC 846 ms
25,548 KB
testcase_12 AC 1,626 ms
43,556 KB
testcase_13 AC 110 ms
12,288 KB
testcase_14 AC 112 ms
12,288 KB
testcase_15 AC 110 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'prime'

N, K = gets.split.map(&:to_i)
A = Array.new(N + 1, 0)

Prime.each(N) do |pn|
  n = pn
  while n <= N do
    A[n] += 1
    n += pn
  end
end

puts A.select{|c| c >= K}.size
0