結果

問題 No.376 立方体のN等分 (2)
ユーザー ayaoniayaoni
提出日時 2020-12-07 20:27:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 692 ms / 5,000 ms
コード長 691 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 62,916 KB
最終ジャッジ日時 2024-09-17 14:02:43
合計ジャッジ時間 7,451 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,020 KB
testcase_01 AC 39 ms
53,148 KB
testcase_02 AC 131 ms
60,464 KB
testcase_03 AC 113 ms
59,372 KB
testcase_04 AC 692 ms
59,304 KB
testcase_05 AC 37 ms
53,132 KB
testcase_06 AC 37 ms
52,928 KB
testcase_07 AC 38 ms
52,564 KB
testcase_08 AC 53 ms
58,924 KB
testcase_09 AC 63 ms
59,308 KB
testcase_10 AC 60 ms
61,944 KB
testcase_11 AC 205 ms
59,768 KB
testcase_12 AC 131 ms
59,040 KB
testcase_13 AC 178 ms
58,908 KB
testcase_14 AC 240 ms
60,940 KB
testcase_15 AC 150 ms
59,960 KB
testcase_16 AC 63 ms
62,340 KB
testcase_17 AC 92 ms
59,396 KB
testcase_18 AC 163 ms
58,820 KB
testcase_19 AC 122 ms
58,556 KB
testcase_20 AC 204 ms
59,572 KB
testcase_21 AC 64 ms
61,668 KB
testcase_22 AC 160 ms
58,564 KB
testcase_23 AC 67 ms
61,004 KB
testcase_24 AC 73 ms
62,052 KB
testcase_25 AC 45 ms
59,224 KB
testcase_26 AC 69 ms
62,916 KB
testcase_27 AC 273 ms
59,172 KB
testcase_28 AC 169 ms
59,952 KB
testcase_29 AC 423 ms
58,620 KB
testcase_30 AC 262 ms
59,844 KB
testcase_31 AC 144 ms
58,444 KB
testcase_32 AC 81 ms
58,476 KB
testcase_33 AC 42 ms
58,216 KB
testcase_34 AC 108 ms
58,424 KB
testcase_35 AC 338 ms
59,684 KB
testcase_36 AC 169 ms
59,496 KB
testcase_37 AC 170 ms
58,840 KB
testcase_38 AC 366 ms
59,028 KB
testcase_39 AC 138 ms
58,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N = I()
ans = N-1
for i in range(1,int(N**(1/3))+2):
    if N % i == 0:
        M = N//i
        for j in range(int(M**.5)+1,0,-1):
            if M % j == 0:
                ans = min(ans,i+j+M//j-3)
                break

print(ans,N-1)
0