結果

問題 No.1737 One to N
ユーザー wgrapewgrape
提出日時 2024-10-08 17:22:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 597 bytes
コンパイル時間 469 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 67,344 KB
最終ジャッジ日時 2024-10-08 17:23:02
合計ジャッジ時間 3,151 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
65,072 KB
testcase_01 AC 47 ms
55,268 KB
testcase_02 AC 57 ms
67,344 KB
testcase_03 AC 44 ms
56,236 KB
testcase_04 AC 50 ms
63,748 KB
testcase_05 AC 43 ms
55,380 KB
testcase_06 AC 44 ms
55,528 KB
testcase_07 AC 44 ms
55,876 KB
testcase_08 AC 44 ms
56,320 KB
testcase_09 AC 51 ms
62,784 KB
testcase_10 AC 44 ms
56,068 KB
testcase_11 AC 44 ms
56,812 KB
testcase_12 AC 44 ms
55,384 KB
testcase_13 AC 46 ms
60,748 KB
testcase_14 AC 47 ms
60,248 KB
testcase_15 AC 47 ms
61,484 KB
testcase_16 AC 45 ms
55,932 KB
testcase_17 AC 47 ms
60,608 KB
testcase_18 AC 44 ms
55,712 KB
testcase_19 AC 49 ms
56,260 KB
testcase_20 AC 43 ms
55,132 KB
testcase_21 AC 46 ms
61,112 KB
testcase_22 AC 44 ms
55,804 KB
testcase_23 AC 47 ms
60,992 KB
testcase_24 AC 47 ms
61,280 KB
testcase_25 AC 46 ms
61,060 KB
testcase_26 AC 44 ms
54,992 KB
testcase_27 AC 45 ms
55,484 KB
testcase_28 AC 47 ms
60,432 KB
testcase_29 AC 43 ms
55,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]
    
N = int(input())
from functools import lru_cache

@lru_cache(maxsize=1000)
def f(x):
    if x == 1:
        return 0
    divs = make_divisors(x)
    best = 1 << 60
    for d in divs:
        if d == 1:
            continue
        best = min(best, f(x // d) + d)
    return best
        
print(f(N))
0