結果

問題 No.1737 One to N
ユーザー ShirotsumeShirotsume
提出日時 2021-10-11 21:36:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 218 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 78,352 KB
最終ジャッジ日時 2024-05-04 04:04:35
合計ジャッジ時間 2,535 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
77,888 KB
testcase_01 AC 34 ms
55,468 KB
testcase_02 AC 46 ms
65,908 KB
testcase_03 AC 35 ms
55,568 KB
testcase_04 AC 44 ms
64,624 KB
testcase_05 AC 72 ms
78,352 KB
testcase_06 AC 73 ms
78,020 KB
testcase_07 AC 66 ms
76,408 KB
testcase_08 AC 45 ms
65,212 KB
testcase_09 AC 43 ms
65,364 KB
testcase_10 AC 52 ms
68,984 KB
testcase_11 AC 47 ms
65,352 KB
testcase_12 AC 52 ms
67,712 KB
testcase_13 AC 52 ms
70,472 KB
testcase_14 AC 59 ms
74,484 KB
testcase_15 AC 65 ms
74,860 KB
testcase_16 AC 50 ms
68,376 KB
testcase_17 AC 51 ms
69,044 KB
testcase_18 AC 50 ms
69,060 KB
testcase_19 AC 42 ms
64,924 KB
testcase_20 AC 43 ms
66,276 KB
testcase_21 AC 55 ms
72,508 KB
testcase_22 AC 44 ms
65,004 KB
testcase_23 AC 55 ms
72,860 KB
testcase_24 AC 52 ms
70,740 KB
testcase_25 AC 48 ms
68,012 KB
testcase_26 AC 44 ms
65,972 KB
testcase_27 AC 33 ms
55,456 KB
testcase_28 AC 52 ms
71,008 KB
testcase_29 AC 34 ms
55,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
INF = 10 ** 18
dp = [INF] * 300010
dp[1] = 0
for i in range(1, n + 1):
    for k in range(1, n + 1):
        if i * k > n:
            break
        dp[i * k] = min(dp[i] + k, dp[i * k])
print(dp[n])

0