結果

問題 No.1737 One to N
ユーザー first_vilfirst_vil
提出日時 2021-11-12 22:06:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 156 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,528 KB
最終ジャッジ日時 2024-05-04 08:56:05
合計ジャッジ時間 26,109 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 339 ms
12,800 KB
testcase_03 AC 24 ms
10,624 KB
testcase_04 AC 179 ms
11,776 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 182 ms
11,904 KB
testcase_09 AC 221 ms
12,032 KB
testcase_10 AC 781 ms
15,488 KB
testcase_11 AC 182 ms
11,904 KB
testcase_12 AC 489 ms
13,824 KB
testcase_13 AC 924 ms
16,256 KB
testcase_14 AC 1,475 ms
18,944 KB
testcase_15 AC 1,761 ms
20,096 KB
testcase_16 AC 614 ms
14,592 KB
testcase_17 AC 730 ms
15,232 KB
testcase_18 AC 730 ms
15,232 KB
testcase_19 AC 139 ms
11,520 KB
testcase_20 AC 153 ms
11,648 KB
testcase_21 AC 1,186 ms
17,408 KB
testcase_22 AC 168 ms
11,904 KB
testcase_23 AC 1,230 ms
17,664 KB
testcase_24 AC 921 ms
16,128 KB
testcase_25 AC 513 ms
13,952 KB
testcase_26 AC 265 ms
12,416 KB
testcase_27 AC 24 ms
10,624 KB
testcase_28 AC 773 ms
15,488 KB
testcase_29 AC 26 ms
10,752 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