結果

問題 No.811 約数の個数の最大化
ユーザー lloyzlloyz
提出日時 2022-05-26 22:15:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 551 ms / 2,000 ms
コード長 617 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 86,888 KB
最終ジャッジ日時 2024-09-20 15:07:34
合計ジャッジ時間 4,016 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 47 ms
62,208 KB
testcase_02 AC 460 ms
86,564 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 42 ms
60,288 KB
testcase_05 AC 55 ms
63,872 KB
testcase_06 AC 65 ms
65,920 KB
testcase_07 AC 76 ms
66,816 KB
testcase_08 AC 217 ms
84,480 KB
testcase_09 AC 234 ms
84,992 KB
testcase_10 AC 155 ms
73,600 KB
testcase_11 AC 446 ms
86,064 KB
testcase_12 AC 124 ms
70,784 KB
testcase_13 AC 507 ms
86,400 KB
testcase_14 AC 551 ms
86,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

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

F = [[] for _ in range(n)]
for i in range(1, n):
    j = 1
    while j * j <= i:
        if i % j != 0:
            j += 1
            continue
        F[i].append(j)
        if j * j != i:
            F[i].append(i // j)
        j += 1

N = [1 for _ in range(n)]
N[1] = 0
i = 2
while i * i < n:
    if N[i] != 1:
        i += 1
        continue
    for j in range(i * 2, n, i):
        N[j] = N[i] + N[j // i]
    i += 1

max_, ans = 0, 0
for i in range(1, n):
    if N[gcd(i, n)] >= k and len(F[i]) > max_:
        ans = i
        max_ = len(F[i])
print(ans)
0