結果

問題 No.1737 One to N
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-12 21:26:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 198 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 64,636 KB
最終ジャッジ日時 2024-05-04 04:51:10
合計ジャッジ時間 2,699 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
64,512 KB
testcase_01 AC 40 ms
52,640 KB
testcase_02 AC 51 ms
62,064 KB
testcase_03 AC 37 ms
52,548 KB
testcase_04 AC 50 ms
62,484 KB
testcase_05 AC 76 ms
64,060 KB
testcase_06 AC 77 ms
64,088 KB
testcase_07 AC 77 ms
62,984 KB
testcase_08 AC 50 ms
62,048 KB
testcase_09 AC 48 ms
61,584 KB
testcase_10 AC 56 ms
62,336 KB
testcase_11 AC 50 ms
62,756 KB
testcase_12 AC 49 ms
62,860 KB
testcase_13 AC 57 ms
62,784 KB
testcase_14 AC 67 ms
64,636 KB
testcase_15 AC 70 ms
63,344 KB
testcase_16 AC 52 ms
62,980 KB
testcase_17 AC 55 ms
62,180 KB
testcase_18 AC 54 ms
61,936 KB
testcase_19 AC 45 ms
62,864 KB
testcase_20 AC 46 ms
60,964 KB
testcase_21 AC 61 ms
63,244 KB
testcase_22 AC 45 ms
61,784 KB
testcase_23 AC 60 ms
64,260 KB
testcase_24 AC 57 ms
62,344 KB
testcase_25 AC 51 ms
62,716 KB
testcase_26 AC 48 ms
62,900 KB
testcase_27 AC 35 ms
52,232 KB
testcase_28 AC 55 ms
62,016 KB
testcase_29 AC 37 ms
53,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
INF =10**18
dp = [INF]*(n+1)
dp[1] = 0
for i in range(1, n):
    k = 2
    j = k*i
    while j <= n:
        dp[j] = min(dp[j], dp[i]+k)
        k += 1
        j = k*i
print(dp[n])
0