結果

問題 No.1737 One to N
ユーザー first_vilfirst_vil
提出日時 2021-11-12 22:06:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 156 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 75,824 KB
最終ジャッジ日時 2024-05-04 08:56:58
合計ジャッジ時間 3,244 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
75,520 KB
testcase_01 AC 34 ms
51,584 KB
testcase_02 AC 52 ms
64,000 KB
testcase_03 AC 33 ms
52,224 KB
testcase_04 AC 48 ms
63,360 KB
testcase_05 AC 114 ms
75,648 KB
testcase_06 AC 117 ms
75,824 KB
testcase_07 AC 104 ms
74,880 KB
testcase_08 AC 49 ms
63,232 KB
testcase_09 AC 50 ms
63,232 KB
testcase_10 AC 74 ms
67,456 KB
testcase_11 AC 48 ms
63,104 KB
testcase_12 AC 62 ms
65,792 KB
testcase_13 AC 75 ms
68,352 KB
testcase_14 AC 91 ms
71,936 KB
testcase_15 AC 102 ms
72,960 KB
testcase_16 AC 64 ms
66,688 KB
testcase_17 AC 67 ms
66,816 KB
testcase_18 AC 68 ms
67,072 KB
testcase_19 AC 45 ms
62,720 KB
testcase_20 AC 46 ms
63,232 KB
testcase_21 AC 78 ms
70,272 KB
testcase_22 AC 48 ms
63,104 KB
testcase_23 AC 82 ms
70,400 KB
testcase_24 AC 72 ms
68,608 KB
testcase_25 AC 58 ms
65,408 KB
testcase_26 AC 51 ms
63,744 KB
testcase_27 AC 33 ms
51,456 KB
testcase_28 AC 70 ms
67,840 KB
testcase_29 AC 33 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
dp = [123456789]*(n+1)
dp[1] = 0
for x in range(1,n):
    for y in range(x*2,n+1,x):
        dp[y] = min(dp[y], dp[x] + y//x)
print(dp[n])
0