結果

問題 No.811 約数の個数の最大化
ユーザー yuruhiyayuruhiya
提出日時 2021-04-18 11:40:50
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,467 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 40 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 20,224 KB
最終ジャッジ日時 2024-07-04 04:25:49
合計ジャッジ時間 9,443 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,288 KB
testcase_01 AC 101 ms
12,544 KB
testcase_02 AC 1,285 ms
19,840 KB
testcase_03 AC 96 ms
12,416 KB
testcase_04 AC 99 ms
12,672 KB
testcase_05 AC 109 ms
12,416 KB
testcase_06 AC 173 ms
12,800 KB
testcase_07 AC 197 ms
13,440 KB
testcase_08 AC 656 ms
15,872 KB
testcase_09 AC 645 ms
16,128 KB
testcase_10 AC 452 ms
14,592 KB
testcase_11 AC 1,252 ms
19,712 KB
testcase_12 AC 386 ms
13,696 KB
testcase_13 AC 1,431 ms
20,224 KB
testcase_14 AC 1,467 ms
19,712 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'prime'
n, k = gets.split.map(&:to_i)
p (2...n).map { |i|
	[i,n.gcd(i).prime_division.sum{_2},i.prime_division.reduce(1){_1*-~_2[1]}]
}.select{_2>=k}.max_by{_3}[0]
0