結果

問題 No.1737 One to N
ユーザー qibqib
提出日時 2023-04-08 20:09:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 185 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 76,520 KB
最終ジャッジ日時 2024-10-03 17:07:21
合計ジャッジ時間 3,996 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
75,976 KB
testcase_01 AC 37 ms
52,616 KB
testcase_02 AC 62 ms
64,976 KB
testcase_03 AC 38 ms
52,132 KB
testcase_04 AC 60 ms
64,552 KB
testcase_05 AC 133 ms
75,868 KB
testcase_06 AC 134 ms
76,520 KB
testcase_07 AC 124 ms
75,040 KB
testcase_08 AC 56 ms
63,632 KB
testcase_09 AC 58 ms
65,692 KB
testcase_10 AC 82 ms
69,172 KB
testcase_11 AC 56 ms
65,120 KB
testcase_12 AC 67 ms
67,464 KB
testcase_13 AC 85 ms
70,148 KB
testcase_14 AC 107 ms
72,036 KB
testcase_15 AC 113 ms
73,452 KB
testcase_16 AC 73 ms
67,244 KB
testcase_17 AC 78 ms
68,196 KB
testcase_18 AC 78 ms
68,136 KB
testcase_19 AC 52 ms
65,096 KB
testcase_20 AC 53 ms
63,704 KB
testcase_21 AC 91 ms
71,436 KB
testcase_22 AC 52 ms
63,792 KB
testcase_23 AC 93 ms
71,168 KB
testcase_24 AC 83 ms
69,796 KB
testcase_25 AC 69 ms
67,020 KB
testcase_26 AC 58 ms
64,232 KB
testcase_27 AC 36 ms
53,096 KB
testcase_28 AC 80 ms
68,240 KB
testcase_29 AC 36 ms
51,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 1 << 60

n = int(input())

dp = [INF for _ in range(n + 1)]
dp[1] = 0
for x in range(1, n):
  for y in range(2 * x, n + 1, x):
    dp[y] = min(dp[y], dp[x] + y // x)

print(dp[n])
0