結果

問題 No.811 約数の個数の最大化
ユーザー convexineqconvexineq
提出日時 2021-03-22 22:46:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 67,776 KB
最終ジャッジ日時 2024-11-24 11:34:37
合計ジャッジ時間 1,519 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,708 KB
testcase_01 AC 40 ms
59,900 KB
testcase_02 AC 56 ms
67,776 KB
testcase_03 AC 32 ms
52,396 KB
testcase_04 AC 36 ms
59,308 KB
testcase_05 AC 41 ms
62,140 KB
testcase_06 AC 43 ms
62,760 KB
testcase_07 AC 43 ms
64,052 KB
testcase_08 AC 45 ms
64,796 KB
testcase_09 AC 47 ms
65,968 KB
testcase_10 AC 45 ms
64,892 KB
testcase_11 AC 49 ms
66,212 KB
testcase_12 AC 44 ms
64,008 KB
testcase_13 AC 55 ms
67,224 KB
testcase_14 AC 53 ms
67,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
yaku = [0]*n
for i in range(2,n):
    for j in range(i,n,i):
        yaku[j] += 1

cnt = [0]*n
for i in range(n):
    if yaku[i] == 1 and n%i==0:
        nn = n
        v = i
        while nn%i==0:
            nn //= i
            for j in range(v,n,v):
                cnt[j] += 1
            v *= i

ans = 0
val = 0
for i in range(n):
    if cnt[i] >= k and val < yaku[i]:
        val = yaku[i]
        ans = i
print(ans)
0