結果

問題 No.1737 One to N
ユーザー hiragnhiragn
提出日時 2022-11-03 01:36:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 271 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,528 KB
最終ジャッジ日時 2024-07-17 13:06:16
合計ジャッジ時間 23,867 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 287 ms
12,928 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 159 ms
11,904 KB
testcase_05 TLE -
testcase_06 AC 1,988 ms
22,528 KB
testcase_07 AC 1,799 ms
21,632 KB
testcase_08 AC 162 ms
11,776 KB
testcase_09 AC 188 ms
12,160 KB
testcase_10 AC 698 ms
15,488 KB
testcase_11 AC 161 ms
11,904 KB
testcase_12 AC 430 ms
13,696 KB
testcase_13 AC 854 ms
16,256 KB
testcase_14 AC 1,354 ms
19,072 KB
testcase_15 AC 1,572 ms
20,096 KB
testcase_16 AC 559 ms
14,592 KB
testcase_17 AC 667 ms
15,360 KB
testcase_18 AC 666 ms
15,232 KB
testcase_19 AC 123 ms
11,648 KB
testcase_20 AC 136 ms
11,776 KB
testcase_21 AC 1,057 ms
17,536 KB
testcase_22 AC 147 ms
11,776 KB
testcase_23 AC 1,099 ms
17,792 KB
testcase_24 AC 811 ms
16,256 KB
testcase_25 AC 451 ms
13,952 KB
testcase_26 AC 229 ms
12,416 KB
testcase_27 AC 30 ms
10,752 KB
testcase_28 AC 710 ms
15,360 KB
testcase_29 AC 30 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import inf


def main():
    n = int(input())
    dp = [inf] * (n + 1)
    dp[1] = 0
    for i in range(1, n + 1):
        for k in range(1, n // i + 1):
            dp[i * k] = min(dp[i] + k, dp[i * k])
    print(dp[n])


if __name__ == "__main__":
    main()
0