結果

問題 No.811 約数の個数の最大化
ユーザー letrangerjpletrangerjp
提出日時 2019-04-12 21:55:58
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 378 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-09-14 18:25:40
合計ジャッジ時間 7,821 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 107 ms
12,288 KB
testcase_02 AC 997 ms
12,288 KB
testcase_03 WA -
testcase_04 AC 103 ms
12,416 KB
testcase_05 AC 114 ms
12,544 KB
testcase_06 AC 150 ms
12,416 KB
testcase_07 AC 183 ms
12,544 KB
testcase_08 AC 499 ms
12,288 KB
testcase_09 AC 529 ms
12,544 KB
testcase_10 AC 364 ms
12,544 KB
testcase_11 AC 988 ms
12,416 KB
testcase_12 AC 303 ms
12,672 KB
testcase_13 AC 1,130 ms
12,288 KB
testcase_14 AC 1,116 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#!ruby -rprime
N, K = gets.split.map &:to_i

x = N.prime_division
x_primes_h = x.to_h
x_primes_h.default = 0
max_n = ans = 0

(1..N).each{|i|
  y = i.prime_division
  common_divisor = y.map{|k, v|
    [x_primes_h[k], v].min
  }.sum
  if common_divisor >= K
    y_n = y.inject(1){|r, (_, v)| r * (v + 1) }
    if y_n > max_n
      max_n = y_n
      ans = i
    end
  end
}
p ans
0