結果

問題 No.1737 One to N
ユーザー wgrapewgrape
提出日時 2024-10-08 17:26:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 515 bytes
コンパイル時間 599 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-10-08 17:26:32
合計ジャッジ時間 3,881 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
77,824 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 54 ms
64,384 KB
testcase_03 AC 39 ms
51,456 KB
testcase_04 AC 54 ms
63,104 KB
testcase_05 AC 86 ms
78,080 KB
testcase_06 AC 86 ms
77,184 KB
testcase_07 AC 83 ms
77,832 KB
testcase_08 AC 54 ms
63,856 KB
testcase_09 AC 52 ms
63,360 KB
testcase_10 AC 63 ms
68,992 KB
testcase_11 AC 53 ms
63,744 KB
testcase_12 AC 59 ms
66,048 KB
testcase_13 AC 65 ms
69,760 KB
testcase_14 AC 73 ms
73,216 KB
testcase_15 AC 76 ms
74,752 KB
testcase_16 AC 60 ms
66,688 KB
testcase_17 AC 61 ms
67,968 KB
testcase_18 AC 63 ms
68,224 KB
testcase_19 AC 52 ms
63,232 KB
testcase_20 AC 51 ms
62,976 KB
testcase_21 AC 68 ms
71,808 KB
testcase_22 AC 52 ms
63,104 KB
testcase_23 AC 68 ms
71,552 KB
testcase_24 AC 64 ms
69,504 KB
testcase_25 AC 59 ms
66,560 KB
testcase_26 AC 56 ms
64,128 KB
testcase_27 AC 36 ms
51,840 KB
testcase_28 AC 63 ms
68,608 KB
testcase_29 AC 37 ms
51,968 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())
dp = [1 << 60] * (N + 1)
dp[1] = 0
for i in range(1, N + 1):
    for k in range(2, N + 1):
        if i * k > N:
            break
        dp[i * k] = min(dp[i * k], dp[i] + k)
        
print(dp[N])

0