結果

問題 No.1737 One to N
ユーザー ShirotsumeShirotsume
提出日時 2021-10-30 15:11:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 218 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 36,788 KB
最終ジャッジ日時 2024-11-25 11:09:16
合計ジャッジ時間 35,931 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 31 ms
19,876 KB
testcase_02 AC 481 ms
36,788 KB
testcase_03 AC 29 ms
19,684 KB
testcase_04 AC 263 ms
13,688 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 265 ms
13,824 KB
testcase_09 AC 311 ms
13,892 KB
testcase_10 AC 1,114 ms
16,768 KB
testcase_11 AC 266 ms
13,824 KB
testcase_12 AC 724 ms
15,488 KB
testcase_13 AC 1,324 ms
17,408 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 902 ms
16,000 KB
testcase_17 AC 1,064 ms
16,640 KB
testcase_18 AC 1,078 ms
16,652 KB
testcase_19 AC 193 ms
13,568 KB
testcase_20 AC 217 ms
13,696 KB
testcase_21 AC 1,640 ms
18,432 KB
testcase_22 AC 248 ms
13,568 KB
testcase_23 AC 1,712 ms
18,560 KB
testcase_24 AC 1,341 ms
17,152 KB
testcase_25 AC 722 ms
15,488 KB
testcase_26 AC 383 ms
14,336 KB
testcase_27 AC 31 ms
13,056 KB
testcase_28 AC 1,156 ms
16,896 KB
testcase_29 AC 30 ms
34,828 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