結果

問題 No.811 約数の個数の最大化
ユーザー 12354865271235486527
提出日時 2019-12-19 17:18:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 709 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 17,824 KB
最終ジャッジ日時 2024-07-07 01:33:18
合計ジャッジ時間 4,438 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
17,824 KB
testcase_01 AC 37 ms
10,752 KB
testcase_02 AC 242 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 145 ms
10,752 KB
testcase_06 AC 33 ms
10,752 KB
testcase_07 AC 143 ms
10,752 KB
testcase_08 AC 69 ms
10,752 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def count_prime_factor(N):
    ret = 0
    tmp = N
    c = N//2 + 1
    for n in range(2, c):
        while tmp % n == 0:
            tmp = tmp // n
            ret += 1
        if tmp == 1:
            break
    if ret:
        return ret
    else:
        return 1

def count_divisor(N):
    ret = 0
    c = N//2 + 1
    for i in range(1, c):
        if N % i == 0:
            ret += 1
            if N != i * i:
                ret += 1
    return ret

N, K = map(int, input().split())
max_d = 0
ans = 0
for n in range(1, N):
    gcd = math.gcd(N, n)
    if count_prime_factor(gcd) >= K:
        d = count_divisor(n)
        if max_d < d:
            max_d = d
            ans = n
print(ans)
0