結果

問題 No.375 立方体のN等分 (1)
ユーザー mkawa2
提出日時 2019-12-26 23:25:52
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 2,067 ms / 5,000 ms
コード長 1,394 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 44,448 KB
最終ジャッジ日時 2024-10-05 09:49:49
合計ジャッジ時間 26,616 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import *
from bisect import *
from math import *
from collections import *
from heapq import *
from random import *
import numpy as np
import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def MI1(): return map(int1, sys.stdin.readline().split())
def MF(): return map(float, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LF(): return list(map(float, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
dij = [(1, 0), (0, 1), (-1, 0), (0, -1)]

def main():
    def div(x, lo):
        for d in range(lo, x):
            if d ** 2 > x:
                return -1
            if x % d == 0:
                return d
        return -1

    n = II()
    if n==1:
        print(0,0)
        exit()
    lo1 = 1
    ans = 10 ** 16
    while 1:
        d1 = div(n, lo1)
        if d1 == -1: break
        lo1 = d1 + 1
        lo2 = d1
        while 1:
            d2 = div(n // d1, lo2)
            lo2 = d2 + 1
            if d2 == -1: break
            d3 = n // d1 // d2
            val = d1 + d2 + d3 - 3
            if val < ans: ans = val
    
    print(ans, n - 1)

main()
0