結果

問題 No.1737 One to N
ユーザー Meso MesoMeso Meso
提出日時 2024-07-11 15:52:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 80,512 KB
最終ジャッジ日時 2024-07-11 15:52:37
合計ジャッジ時間 4,285 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
80,256 KB
testcase_01 AC 40 ms
51,328 KB
testcase_02 AC 60 ms
64,384 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 56 ms
62,976 KB
testcase_05 AC 104 ms
80,512 KB
testcase_06 AC 120 ms
80,000 KB
testcase_07 AC 97 ms
78,208 KB
testcase_08 AC 58 ms
63,104 KB
testcase_09 AC 58 ms
63,232 KB
testcase_10 AC 73 ms
68,224 KB
testcase_11 AC 58 ms
62,848 KB
testcase_12 AC 65 ms
65,920 KB
testcase_13 AC 75 ms
70,144 KB
testcase_14 AC 86 ms
74,112 KB
testcase_15 AC 91 ms
76,288 KB
testcase_16 AC 67 ms
67,072 KB
testcase_17 AC 70 ms
68,224 KB
testcase_18 AC 70 ms
68,352 KB
testcase_19 AC 56 ms
62,720 KB
testcase_20 AC 57 ms
62,464 KB
testcase_21 AC 83 ms
72,064 KB
testcase_22 AC 58 ms
62,592 KB
testcase_23 AC 82 ms
72,192 KB
testcase_24 AC 76 ms
70,016 KB
testcase_25 AC 65 ms
66,304 KB
testcase_26 AC 59 ms
63,616 KB
testcase_27 AC 40 ms
51,584 KB
testcase_28 AC 71 ms
68,864 KB
testcase_29 AC 41 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

a = float("inf")
dp = [a] * (n+2)
dp[1] = 0

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