結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,680 KB
testcase_01 AC 41 ms
61,092 KB
testcase_02 AC 51 ms
67,380 KB
testcase_03 AC 33 ms
52,556 KB
testcase_04 AC 38 ms
59,880 KB
testcase_05 AC 41 ms
62,728 KB
testcase_06 AC 44 ms
63,792 KB
testcase_07 AC 50 ms
62,752 KB
testcase_08 AC 48 ms
65,316 KB
testcase_09 AC 47 ms
65,396 KB
testcase_10 AC 45 ms
63,924 KB
testcase_11 AC 49 ms
67,128 KB
testcase_12 AC 45 ms
64,232 KB
testcase_13 AC 53 ms
68,764 KB
testcase_14 AC 51 ms
67,680 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