結果

問題 No.811 約数の個数の最大化
ユーザー cielciel
提出日時 2019-04-13 14:33:36
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 236 bytes
コンパイル時間 47 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-09-15 11:05:42
合計ジャッジ時間 8,291 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 105 ms
12,672 KB
testcase_02 AC 1,001 ms
12,672 KB
testcase_03 WA -
testcase_04 AC 105 ms
12,416 KB
testcase_05 AC 116 ms
12,672 KB
testcase_06 AC 154 ms
12,416 KB
testcase_07 AC 181 ms
12,672 KB
testcase_08 AC 503 ms
12,416 KB
testcase_09 AC 532 ms
12,416 KB
testcase_10 AC 362 ms
12,416 KB
testcase_11 AC 987 ms
12,544 KB
testcase_12 AC 307 ms
12,544 KB
testcase_13 AC 1,135 ms
12,544 KB
testcase_14 AC 1,121 ms
12,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require'prime'
n,k=gets.split.map &:to_i
r=rn=0
o=Hash[n.prime_division]
(2..n).each{|i|
	q=i.prime_division
	k0=k
	q.each{|n,p|k0-=[o[n].to_i,p].min}
	if k0<=0
		r0=q.map{|n,p|p+1}.reduce(:*)
		if r<r0
			r=r0
			rn=i
		end
	end
}
p rn
0