結果

問題 No.811 約数の個数の最大化
ユーザー noriocnorioc
提出日時 2024-09-03 02:35:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 604 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 78,088 KB
最終ジャッジ日時 2024-09-03 02:35:46
合計ジャッジ時間 2,721 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,160 KB
testcase_01 AC 69 ms
70,568 KB
testcase_02 AC 117 ms
76,668 KB
testcase_03 AC 43 ms
54,628 KB
testcase_04 AC 45 ms
60,728 KB
testcase_05 AC 74 ms
74,032 KB
testcase_06 AC 78 ms
76,976 KB
testcase_07 AC 93 ms
77,476 KB
testcase_08 AC 99 ms
76,860 KB
testcase_09 AC 126 ms
77,208 KB
testcase_10 AC 101 ms
77,408 KB
testcase_11 AC 88 ms
76,496 KB
testcase_12 AC 84 ms
76,572 KB
testcase_13 AC 176 ms
78,088 KB
testcase_14 AC 109 ms
77,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
from math import gcd


def factorize(n):
    p = 2
    while p * p <= n:
        while n % p == 0:
            yield p
            n //= p
        p += 1
    if n > 1:
        yield n


def number_of_divisors(n: int) -> int:
    res = 1
    for k, v in Counter(factorize(n)).items():
        res *= v+1

    return res


N, K = map(int, input().split())

dmax = 0
ans = 0
for i in range(1, N):
    g = gcd(i, N)
    np = len(list(factorize(g)))
    if np >= K:
        nd = number_of_divisors(i)
        if dmax < nd:
            dmax = nd
            ans = i

print(ans)
0