結果

問題 No.1737 One to N
ユーザー 👑 KazunKazun
提出日時 2021-11-12 21:26:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 171 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 67,476 KB
最終ジャッジ日時 2024-05-04 04:50:43
合計ジャッジ時間 2,624 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
67,476 KB
testcase_01 AC 33 ms
53,084 KB
testcase_02 AC 46 ms
63,904 KB
testcase_03 AC 32 ms
53,364 KB
testcase_04 AC 43 ms
63,300 KB
testcase_05 AC 74 ms
66,112 KB
testcase_06 AC 76 ms
66,968 KB
testcase_07 AC 76 ms
66,672 KB
testcase_08 AC 44 ms
62,264 KB
testcase_09 AC 44 ms
63,528 KB
testcase_10 AC 53 ms
63,428 KB
testcase_11 AC 44 ms
61,988 KB
testcase_12 AC 49 ms
63,720 KB
testcase_13 AC 59 ms
65,088 KB
testcase_14 AC 68 ms
64,940 KB
testcase_15 AC 70 ms
66,732 KB
testcase_16 AC 51 ms
64,428 KB
testcase_17 AC 53 ms
63,580 KB
testcase_18 AC 55 ms
64,532 KB
testcase_19 AC 45 ms
62,068 KB
testcase_20 AC 44 ms
62,884 KB
testcase_21 AC 60 ms
65,392 KB
testcase_22 AC 45 ms
63,048 KB
testcase_23 AC 62 ms
65,088 KB
testcase_24 AC 57 ms
64,160 KB
testcase_25 AC 51 ms
63,404 KB
testcase_26 AC 48 ms
63,780 KB
testcase_27 AC 35 ms
52,472 KB
testcase_28 AC 56 ms
63,912 KB
testcase_29 AC 35 ms
52,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

inf=float("inf")
DP=[inf]*(N+1); DP[1]=0

for i in range(1,N+1):
    k=2
    while k*i<=N:
        DP[k*i]=min(DP[k*i],DP[i]+k)
        k+=1

print(DP[N])
0