結果

問題 No.1737 One to N
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-12 21:26:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 198 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 64,016 KB
最終ジャッジ日時 2024-11-25 12:02:11
合計ジャッジ時間 3,005 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
63,852 KB
testcase_01 AC 39 ms
52,084 KB
testcase_02 AC 56 ms
63,060 KB
testcase_03 AC 38 ms
53,188 KB
testcase_04 AC 52 ms
62,424 KB
testcase_05 AC 80 ms
63,944 KB
testcase_06 AC 81 ms
63,236 KB
testcase_07 AC 78 ms
64,012 KB
testcase_08 AC 52 ms
62,820 KB
testcase_09 AC 51 ms
61,552 KB
testcase_10 AC 61 ms
62,524 KB
testcase_11 AC 52 ms
62,500 KB
testcase_12 AC 57 ms
62,680 KB
testcase_13 AC 63 ms
62,640 KB
testcase_14 AC 71 ms
63,420 KB
testcase_15 AC 73 ms
62,788 KB
testcase_16 AC 56 ms
62,152 KB
testcase_17 AC 59 ms
61,956 KB
testcase_18 AC 60 ms
61,616 KB
testcase_19 AC 51 ms
61,196 KB
testcase_20 AC 51 ms
62,828 KB
testcase_21 AC 65 ms
63,076 KB
testcase_22 AC 51 ms
61,120 KB
testcase_23 AC 67 ms
64,016 KB
testcase_24 AC 63 ms
62,932 KB
testcase_25 AC 55 ms
62,184 KB
testcase_26 AC 53 ms
61,616 KB
testcase_27 AC 38 ms
53,008 KB
testcase_28 AC 60 ms
61,868 KB
testcase_29 AC 39 ms
52,584 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