結果

問題 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,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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 457 ms
44,196 KB
testcase_01 AC 455 ms
44,188 KB
testcase_02 AC 820 ms
43,936 KB
testcase_03 AC 467 ms
44,448 KB
testcase_04 AC 479 ms
44,072 KB
testcase_05 AC 462 ms
43,940 KB
testcase_06 AC 469 ms
43,940 KB
testcase_07 AC 513 ms
44,064 KB
testcase_08 AC 653 ms
43,940 KB
testcase_09 AC 509 ms
43,940 KB
testcase_10 AC 571 ms
44,072 KB
testcase_11 AC 570 ms
44,044 KB
testcase_12 AC 605 ms
44,196 KB
testcase_13 AC 608 ms
44,196 KB
testcase_14 AC 1,260 ms
43,816 KB
testcase_15 AC 657 ms
43,808 KB
testcase_16 AC 601 ms
44,064 KB
testcase_17 AC 1,690 ms
43,936 KB
testcase_18 AC 1,331 ms
44,064 KB
testcase_19 AC 656 ms
44,064 KB
testcase_20 AC 577 ms
44,024 KB
testcase_21 AC 574 ms
44,200 KB
testcase_22 AC 2,067 ms
44,204 KB
testcase_23 AC 634 ms
44,188 KB
testcase_24 AC 595 ms
44,068 KB
testcase_25 AC 812 ms
43,936 KB
testcase_26 AC 602 ms
44,192 KB
testcase_27 AC 655 ms
43,812 KB
testcase_28 AC 573 ms
44,192 KB
testcase_29 AC 583 ms
44,192 KB
testcase_30 AC 638 ms
44,316 KB
testcase_31 AC 651 ms
44,320 KB
testcase_32 AC 585 ms
43,940 KB
testcase_33 AC 639 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