結果

問題 No.1737 One to N
ユーザー flippergoflippergo
提出日時 2024-09-24 12:06:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 421 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 60,432 KB
最終ジャッジ日時 2024-09-24 12:06:41
合計ジャッジ時間 2,781 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,440 KB
testcase_01 AC 35 ms
52,992 KB
testcase_02 AC 40 ms
60,432 KB
testcase_03 AC 36 ms
52,556 KB
testcase_04 AC 39 ms
57,856 KB
testcase_05 AC 36 ms
53,088 KB
testcase_06 AC 36 ms
52,348 KB
testcase_07 AC 36 ms
52,680 KB
testcase_08 AC 36 ms
52,288 KB
testcase_09 AC 39 ms
59,236 KB
testcase_10 AC 35 ms
53,108 KB
testcase_11 AC 36 ms
53,824 KB
testcase_12 AC 36 ms
52,984 KB
testcase_13 AC 39 ms
58,468 KB
testcase_14 AC 38 ms
57,936 KB
testcase_15 AC 39 ms
58,208 KB
testcase_16 AC 37 ms
52,592 KB
testcase_17 AC 39 ms
57,392 KB
testcase_18 AC 36 ms
52,952 KB
testcase_19 AC 36 ms
52,128 KB
testcase_20 AC 36 ms
52,828 KB
testcase_21 AC 39 ms
57,804 KB
testcase_22 AC 37 ms
52,620 KB
testcase_23 AC 38 ms
58,844 KB
testcase_24 AC 39 ms
59,264 KB
testcase_25 AC 40 ms
58,452 KB
testcase_26 AC 36 ms
53,380 KB
testcase_27 AC 36 ms
52,408 KB
testcase_28 AC 38 ms
57,260 KB
testcase_29 AC 36 ms
52,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

memo = {}
def dfs(i):
    if i==1:return 0
    dmin = 10**6
    for j in range(1,i+1):
        if j*j>i:break
        if i%j==0:
            if j not in memo:
                memo[j] = dfs(j)
            dmin = min(dmin,memo[j]+i//j)
            if j!=1:
                if i//j not in memo:
                    memo[i//j] = dfs(i//j)
                dmin = min(dmin,memo[i//j]+j)
    return dmin
print(dfs(int(input())))
0