結果

問題 No.1737 One to N
ユーザー Shirapon_ponShirapon_pon
提出日時 2021-11-29 11:42:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 78,244 KB
最終ジャッジ日時 2024-07-02 09:23:15
合計ジャッジ時間 2,904 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
78,244 KB
testcase_01 AC 34 ms
51,584 KB
testcase_02 AC 48 ms
65,152 KB
testcase_03 AC 33 ms
51,584 KB
testcase_04 AC 48 ms
63,872 KB
testcase_05 AC 78 ms
78,080 KB
testcase_06 AC 79 ms
77,876 KB
testcase_07 AC 75 ms
78,032 KB
testcase_08 AC 48 ms
64,324 KB
testcase_09 AC 48 ms
64,896 KB
testcase_10 AC 56 ms
69,376 KB
testcase_11 AC 49 ms
64,128 KB
testcase_12 AC 50 ms
66,688 KB
testcase_13 AC 60 ms
70,144 KB
testcase_14 AC 66 ms
74,752 KB
testcase_15 AC 69 ms
75,804 KB
testcase_16 AC 53 ms
68,224 KB
testcase_17 AC 56 ms
68,860 KB
testcase_18 AC 56 ms
68,480 KB
testcase_19 AC 47 ms
63,744 KB
testcase_20 AC 50 ms
63,872 KB
testcase_21 AC 66 ms
72,192 KB
testcase_22 AC 52 ms
64,000 KB
testcase_23 AC 67 ms
72,192 KB
testcase_24 AC 58 ms
69,888 KB
testcase_25 AC 52 ms
67,584 KB
testcase_26 AC 49 ms
65,280 KB
testcase_27 AC 34 ms
52,352 KB
testcase_28 AC 56 ms
68,864 KB
testcase_29 AC 34 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
dp = [i for i in range(n+1)]
dp[1] = 0

for i in range(2,n+1):
    k = 2
    for k in range(2,n+1):
        if i*k > n:
            break
        dp[i*k] = min(dp[i*k],dp[i]+k)

print(dp[n])
0