結果

問題 No.375 立方体のN等分 (1)
ユーザー mkawa2mkawa2
提出日時 2019-12-26 23:25:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,318 ms / 5,000 ms
コード長 1,394 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 44,584 KB
最終ジャッジ日時 2024-04-15 13:19:50
合計ジャッジ時間 29,997 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 522 ms
44,448 KB
testcase_01 AC 522 ms
44,196 KB
testcase_02 AC 907 ms
44,580 KB
testcase_03 AC 519 ms
44,064 KB
testcase_04 AC 520 ms
44,448 KB
testcase_05 AC 521 ms
44,444 KB
testcase_06 AC 526 ms
44,456 KB
testcase_07 AC 569 ms
44,452 KB
testcase_08 AC 732 ms
44,452 KB
testcase_09 AC 582 ms
44,584 KB
testcase_10 AC 654 ms
44,196 KB
testcase_11 AC 640 ms
43,936 KB
testcase_12 AC 675 ms
44,324 KB
testcase_13 AC 682 ms
44,200 KB
testcase_14 AC 1,356 ms
44,556 KB
testcase_15 AC 753 ms
44,188 KB
testcase_16 AC 694 ms
44,448 KB
testcase_17 AC 1,894 ms
44,060 KB
testcase_18 AC 1,493 ms
44,444 KB
testcase_19 AC 757 ms
44,316 KB
testcase_20 AC 660 ms
44,072 KB
testcase_21 AC 654 ms
44,320 KB
testcase_22 AC 2,318 ms
44,324 KB
testcase_23 AC 713 ms
44,452 KB
testcase_24 AC 659 ms
44,324 KB
testcase_25 AC 900 ms
44,064 KB
testcase_26 AC 707 ms
43,948 KB
testcase_27 AC 760 ms
44,192 KB
testcase_28 AC 646 ms
44,196 KB
testcase_29 AC 646 ms
44,192 KB
testcase_30 AC 690 ms
44,320 KB
testcase_31 AC 718 ms
44,200 KB
testcase_32 AC 636 ms
44,580 KB
testcase_33 AC 701 ms
44,192 KB
権限があれば一括ダウンロードができます

ソースコード

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