結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
77,528 KB
testcase_01 AC 39 ms
54,336 KB
testcase_02 AC 54 ms
67,416 KB
testcase_03 AC 40 ms
54,460 KB
testcase_04 AC 52 ms
65,180 KB
testcase_05 AC 84 ms
77,732 KB
testcase_06 AC 83 ms
77,680 KB
testcase_07 AC 76 ms
76,692 KB
testcase_08 AC 53 ms
65,608 KB
testcase_09 AC 53 ms
65,788 KB
testcase_10 AC 61 ms
69,956 KB
testcase_11 AC 52 ms
65,236 KB
testcase_12 AC 56 ms
67,104 KB
testcase_13 AC 64 ms
71,716 KB
testcase_14 AC 70 ms
74,168 KB
testcase_15 AC 74 ms
75,244 KB
testcase_16 AC 57 ms
68,748 KB
testcase_17 AC 59 ms
70,004 KB
testcase_18 AC 61 ms
68,712 KB
testcase_19 AC 51 ms
65,544 KB
testcase_20 AC 51 ms
66,176 KB
testcase_21 AC 67 ms
72,672 KB
testcase_22 AC 53 ms
65,036 KB
testcase_23 AC 66 ms
71,996 KB
testcase_24 AC 61 ms
70,244 KB
testcase_25 AC 56 ms
68,836 KB
testcase_26 AC 52 ms
65,852 KB
testcase_27 AC 40 ms
56,120 KB
testcase_28 AC 61 ms
69,952 KB
testcase_29 AC 40 ms
54,412 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