結果

問題 No.1737 One to N
ユーザー first_vilfirst_vil
提出日時 2021-11-12 22:06:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 156 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,652 KB
実行使用メモリ 76,436 KB
最終ジャッジ日時 2024-11-25 18:50:20
合計ジャッジ時間 3,468 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
76,028 KB
testcase_01 AC 39 ms
52,356 KB
testcase_02 AC 62 ms
65,304 KB
testcase_03 AC 37 ms
52,824 KB
testcase_04 AC 56 ms
64,984 KB
testcase_05 AC 128 ms
76,436 KB
testcase_06 AC 129 ms
76,436 KB
testcase_07 AC 122 ms
74,832 KB
testcase_08 AC 56 ms
63,704 KB
testcase_09 AC 56 ms
64,664 KB
testcase_10 AC 78 ms
68,592 KB
testcase_11 AC 56 ms
63,464 KB
testcase_12 AC 68 ms
66,100 KB
testcase_13 AC 84 ms
69,392 KB
testcase_14 AC 101 ms
72,992 KB
testcase_15 AC 109 ms
73,928 KB
testcase_16 AC 72 ms
67,632 KB
testcase_17 AC 78 ms
67,792 KB
testcase_18 AC 77 ms
67,980 KB
testcase_19 AC 53 ms
63,104 KB
testcase_20 AC 54 ms
63,284 KB
testcase_21 AC 93 ms
70,232 KB
testcase_22 AC 56 ms
63,896 KB
testcase_23 AC 94 ms
70,660 KB
testcase_24 AC 83 ms
68,576 KB
testcase_25 AC 69 ms
66,032 KB
testcase_26 AC 59 ms
65,320 KB
testcase_27 AC 39 ms
52,092 KB
testcase_28 AC 80 ms
68,040 KB
testcase_29 AC 39 ms
52,220 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