結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
77,800 KB
testcase_01 AC 39 ms
54,236 KB
testcase_02 AC 53 ms
66,968 KB
testcase_03 AC 40 ms
55,324 KB
testcase_04 AC 50 ms
65,300 KB
testcase_05 AC 85 ms
77,916 KB
testcase_06 AC 84 ms
78,420 KB
testcase_07 AC 77 ms
76,092 KB
testcase_08 AC 51 ms
66,432 KB
testcase_09 AC 52 ms
66,240 KB
testcase_10 AC 60 ms
70,144 KB
testcase_11 AC 52 ms
65,400 KB
testcase_12 AC 56 ms
67,240 KB
testcase_13 AC 63 ms
70,872 KB
testcase_14 AC 69 ms
75,088 KB
testcase_15 AC 72 ms
76,160 KB
testcase_16 AC 57 ms
69,496 KB
testcase_17 AC 60 ms
69,900 KB
testcase_18 AC 60 ms
69,544 KB
testcase_19 AC 52 ms
65,428 KB
testcase_20 AC 52 ms
64,616 KB
testcase_21 AC 66 ms
72,496 KB
testcase_22 AC 53 ms
65,116 KB
testcase_23 AC 67 ms
72,172 KB
testcase_24 AC 62 ms
70,604 KB
testcase_25 AC 58 ms
67,468 KB
testcase_26 AC 53 ms
66,832 KB
testcase_27 AC 41 ms
56,132 KB
testcase_28 AC 60 ms
69,476 KB
testcase_29 AC 39 ms
54,856 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