結果

問題 No.375 立方体のN等分 (1)
ユーザー ynyn
提出日時 2016-06-05 01:18:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 383 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 62,468 KB
最終ジャッジ日時 2024-10-08 13:31:54
合計ジャッジ時間 2,870 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,828 KB
testcase_01 AC 36 ms
53,340 KB
testcase_02 WA -
testcase_03 AC 35 ms
52,080 KB
testcase_04 AC 36 ms
53,164 KB
testcase_05 AC 36 ms
52,136 KB
testcase_06 AC 38 ms
52,612 KB
testcase_07 AC 41 ms
59,744 KB
testcase_08 WA -
testcase_09 AC 39 ms
57,900 KB
testcase_10 WA -
testcase_11 AC 42 ms
59,304 KB
testcase_12 AC 43 ms
60,824 KB
testcase_13 AC 40 ms
59,176 KB
testcase_14 AC 49 ms
61,148 KB
testcase_15 AC 42 ms
59,552 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 46 ms
59,960 KB
testcase_19 AC 40 ms
57,920 KB
testcase_20 WA -
testcase_21 AC 42 ms
58,128 KB
testcase_22 AC 59 ms
62,152 KB
testcase_23 AC 42 ms
59,292 KB
testcase_24 AC 44 ms
58,888 KB
testcase_25 AC 45 ms
59,148 KB
testcase_26 WA -
testcase_27 AC 45 ms
60,020 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 42 ms
58,016 KB
testcase_31 AC 41 ms
59,148 KB
testcase_32 AC 41 ms
58,452 KB
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
tmax = n - 1
nn = int(n ** (1/3) + 2)
fac1 = 0
fac2 = 0
tmin = 10**12

for i in range(nn, 0, -1):
    if n % i == 0:
        fac1 = i
        fac2 = n // fac1

        for j in range(i, 0, -1):
            if fac2 % j == 0:
                fac2 = j
                fac3 = n // fac1 // fac2
                tmin = min(fac1 + fac2 + fac3 - 3, tmin)

print(tmin, tmax)
0