結果

問題 No.1737 One to N
ユーザー lllllll88938494lllllll88938494
提出日時 2022-05-30 15:36:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 190 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-09-21 00:52:34
合計ジャッジ時間 3,103 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
77,952 KB
testcase_01 AC 37 ms
52,052 KB
testcase_02 AC 55 ms
65,468 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 53 ms
64,000 KB
testcase_05 AC 85 ms
78,208 KB
testcase_06 AC 85 ms
77,824 KB
testcase_07 AC 81 ms
77,696 KB
testcase_08 AC 52 ms
64,128 KB
testcase_09 AC 52 ms
64,000 KB
testcase_10 AC 61 ms
68,480 KB
testcase_11 AC 53 ms
63,232 KB
testcase_12 AC 57 ms
66,560 KB
testcase_13 AC 64 ms
70,016 KB
testcase_14 AC 71 ms
73,472 KB
testcase_15 AC 74 ms
75,392 KB
testcase_16 AC 59 ms
67,456 KB
testcase_17 AC 60 ms
68,736 KB
testcase_18 AC 60 ms
68,864 KB
testcase_19 AC 50 ms
63,616 KB
testcase_20 AC 51 ms
63,616 KB
testcase_21 AC 69 ms
71,296 KB
testcase_22 AC 57 ms
63,872 KB
testcase_23 AC 68 ms
71,680 KB
testcase_24 AC 65 ms
70,144 KB
testcase_25 AC 58 ms
67,072 KB
testcase_26 AC 54 ms
64,256 KB
testcase_27 AC 38 ms
51,968 KB
testcase_28 AC 65 ms
68,608 KB
testcase_29 AC 39 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())

dp=[10**8]*(n+1)
dp[1]=0

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