結果

問題 No.811 約数の個数の最大化
ユーザー 👑 rin204rin204
提出日時 2022-01-19 00:46:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 557 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 66,176 KB
最終ジャッジ日時 2024-05-02 19:39:20
合計ジャッジ時間 1,803 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 43 ms
59,520 KB
testcase_02 AC 76 ms
66,048 KB
testcase_03 AC 35 ms
52,224 KB
testcase_04 AC 41 ms
59,008 KB
testcase_05 AC 52 ms
63,872 KB
testcase_06 AC 55 ms
64,128 KB
testcase_07 AC 56 ms
63,872 KB
testcase_08 AC 69 ms
65,408 KB
testcase_09 AC 66 ms
64,640 KB
testcase_10 AC 59 ms
64,768 KB
testcase_11 AC 82 ms
65,152 KB
testcase_12 AC 62 ms
64,256 KB
testcase_13 AC 81 ms
66,048 KB
testcase_14 AC 78 ms
66,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

n, k = map(int, input().split())

primes = [1] * (n + 1)
cnt_s = [0] * (n + 1)
primes[0] = 0
for i in range(2, n + 1):
    if primes[i] != 1:
        continue
    for j in range(i, n + 1, i):
        cnt = 0
        J = j
        while j % i == 0:
            j //= i
            cnt += 1
        primes[J] *= (cnt + 1)
        cnt_s[J] += cnt
        
max_ = 0
ans = -1
for i in range(1, n):
    g = gcd(n, i)
    if cnt_s[g] < k:
        continue
    if primes[i] > max_:
        max_ = primes[i]
        ans = i
print(ans)
    
    
0