結果

問題 No.1737 One to N
ユーザー tamatotamato
提出日時 2021-11-12 21:26:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 82,692 KB
実行使用メモリ 78,312 KB
最終ジャッジ日時 2024-05-04 04:49:47
合計ジャッジ時間 2,525 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
77,864 KB
testcase_01 AC 32 ms
54,188 KB
testcase_02 AC 44 ms
66,624 KB
testcase_03 AC 32 ms
53,884 KB
testcase_04 AC 42 ms
64,048 KB
testcase_05 AC 72 ms
78,312 KB
testcase_06 AC 71 ms
77,900 KB
testcase_07 AC 71 ms
77,960 KB
testcase_08 AC 43 ms
63,692 KB
testcase_09 AC 43 ms
64,512 KB
testcase_10 AC 51 ms
73,088 KB
testcase_11 AC 45 ms
63,872 KB
testcase_12 AC 48 ms
67,788 KB
testcase_13 AC 52 ms
73,388 KB
testcase_14 AC 63 ms
77,408 KB
testcase_15 AC 67 ms
77,340 KB
testcase_16 AC 51 ms
70,180 KB
testcase_17 AC 51 ms
71,064 KB
testcase_18 AC 51 ms
71,516 KB
testcase_19 AC 42 ms
64,104 KB
testcase_20 AC 42 ms
65,092 KB
testcase_21 AC 58 ms
77,048 KB
testcase_22 AC 41 ms
63,348 KB
testcase_23 AC 61 ms
76,920 KB
testcase_24 AC 55 ms
74,088 KB
testcase_25 AC 47 ms
68,260 KB
testcase_26 AC 45 ms
65,216 KB
testcase_27 AC 32 ms
53,008 KB
testcase_28 AC 51 ms
72,032 KB
testcase_29 AC 31 ms
53,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())

    dp = [10 ** 9] * (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])


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