結果

問題 No.376 立方体のN等分 (2)
ユーザー mkawa2mkawa2
提出日時 2020-03-26 13:25:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 494 ms / 5,000 ms
コード長 1,032 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 76,888 KB
最終ジャッジ日時 2024-06-10 12:24:47
合計ジャッジ時間 9,291 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,408 KB
testcase_01 AC 47 ms
54,480 KB
testcase_02 AC 189 ms
60,832 KB
testcase_03 AC 181 ms
64,280 KB
testcase_04 AC 204 ms
61,040 KB
testcase_05 AC 44 ms
55,088 KB
testcase_06 AC 42 ms
54,980 KB
testcase_07 AC 44 ms
54,528 KB
testcase_08 AC 54 ms
61,184 KB
testcase_09 AC 79 ms
61,452 KB
testcase_10 AC 126 ms
75,856 KB
testcase_11 AC 117 ms
60,056 KB
testcase_12 AC 144 ms
62,868 KB
testcase_13 AC 144 ms
61,652 KB
testcase_14 AC 157 ms
60,864 KB
testcase_15 AC 169 ms
60,772 KB
testcase_16 AC 434 ms
76,040 KB
testcase_17 AC 179 ms
59,968 KB
testcase_18 AC 184 ms
60,572 KB
testcase_19 AC 192 ms
61,160 KB
testcase_20 AC 192 ms
59,640 KB
testcase_21 AC 447 ms
75,980 KB
testcase_22 AC 199 ms
60,340 KB
testcase_23 AC 462 ms
76,028 KB
testcase_24 AC 459 ms
76,888 KB
testcase_25 AC 206 ms
61,776 KB
testcase_26 AC 494 ms
76,268 KB
testcase_27 AC 208 ms
60,796 KB
testcase_28 AC 212 ms
60,452 KB
testcase_29 AC 208 ms
60,892 KB
testcase_30 AC 208 ms
59,644 KB
testcase_31 AC 207 ms
61,248 KB
testcase_32 AC 209 ms
61,028 KB
testcase_33 AC 207 ms
60,580 KB
testcase_34 AC 209 ms
61,444 KB
testcase_35 AC 208 ms
60,120 KB
testcase_36 AC 205 ms
61,268 KB
testcase_37 AC 206 ms
61,552 KB
testcase_38 AC 209 ms
60,492 KB
testcase_39 AC 206 ms
60,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
from bisect import *
from collections import *
from heapq import *

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

def main():
    def fac(n):
        res=[]
        for d in range(1,n+1):
            if d**2>n:break
            if n%d==0:res.append(d)
        return res

    n=II()
    ff=fac(n)
    ans=10**16
    for i,f1 in enumerate(ff):
        for f2 in ff[i:]:
            if n//f1%f2:continue
            f3=n//f1//f2
            if f3<f2:break
            cur=f1+f2+f3-3
            if cur<ans:ans=cur
    print(ans,n-1)

main()
0