結果

問題 No.811 約数の個数の最大化
ユーザー cielciel
提出日時 2019-04-20 15:09:34
言語 Ruby
(3.3.0)
結果
AC  
実行時間 957 ms / 2,000 ms
コード長 168 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-10-01 09:08:24
合計ジャッジ時間 6,897 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,288 KB
testcase_01 AC 87 ms
12,544 KB
testcase_02 AC 858 ms
13,184 KB
testcase_03 AC 88 ms
12,416 KB
testcase_04 AC 85 ms
12,416 KB
testcase_05 AC 99 ms
12,800 KB
testcase_06 AC 133 ms
12,800 KB
testcase_07 AC 153 ms
12,800 KB
testcase_08 AC 428 ms
12,672 KB
testcase_09 AC 449 ms
12,928 KB
testcase_10 AC 319 ms
12,672 KB
testcase_11 AC 864 ms
13,184 KB
testcase_12 AC 258 ms
12,416 KB
testcase_13 AC 953 ms
13,312 KB
testcase_14 AC 957 ms
13,056 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require'prime'
n,k=gets.split.map &:to_i
r=t=0
o=Hash[n.prime_division]
(2...n).map{|i|s=1;l=i.prime_division.sum{|n,p|s*=p+1;[o[n]||0,p].min};k<=l&&r<s&&(r=s;t=i)}
p t
0