結果

問題 No.376 立方体のN等分 (2)
ユーザー ynyn
提出日時 2016-06-05 02:16:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,891 ms / 5,000 ms
コード長 438 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 63,592 KB
最終ジャッジ日時 2024-11-06 22:03:46
合計ジャッジ時間 15,138 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 164 ms
60,408 KB
testcase_03 AC 164 ms
61,680 KB
testcase_04 AC 178 ms
58,708 KB
testcase_05 AC 39 ms
52,676 KB
testcase_06 AC 39 ms
51,856 KB
testcase_07 AC 40 ms
51,888 KB
testcase_08 AC 49 ms
58,420 KB
testcase_09 AC 72 ms
58,556 KB
testcase_10 AC 174 ms
62,088 KB
testcase_11 AC 102 ms
57,808 KB
testcase_12 AC 126 ms
59,416 KB
testcase_13 AC 127 ms
57,800 KB
testcase_14 AC 136 ms
58,404 KB
testcase_15 AC 145 ms
57,756 KB
testcase_16 AC 1,651 ms
63,156 KB
testcase_17 AC 159 ms
59,212 KB
testcase_18 AC 161 ms
59,136 KB
testcase_19 AC 169 ms
59,616 KB
testcase_20 AC 169 ms
58,668 KB
testcase_21 AC 1,680 ms
63,592 KB
testcase_22 AC 176 ms
58,496 KB
testcase_23 AC 1,730 ms
62,948 KB
testcase_24 AC 1,656 ms
63,576 KB
testcase_25 AC 177 ms
59,240 KB
testcase_26 AC 1,891 ms
63,340 KB
testcase_27 AC 181 ms
58,188 KB
testcase_28 AC 182 ms
57,740 KB
testcase_29 AC 182 ms
58,028 KB
testcase_30 AC 181 ms
57,872 KB
testcase_31 AC 183 ms
58,064 KB
testcase_32 AC 181 ms
58,228 KB
testcase_33 AC 181 ms
57,960 KB
testcase_34 AC 182 ms
57,308 KB
testcase_35 AC 181 ms
58,708 KB
testcase_36 AC 182 ms
57,852 KB
testcase_37 AC 182 ms
57,760 KB
testcase_38 AC 181 ms
57,596 KB
testcase_39 AC 182 ms
58,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
tmax = n - 1
tmin = 10**15
i = 1
f = []

while i * i <= n:
    if n % i == 0:
        f.append(i)
    i += 1

for i in f:
    if n % i == 0:
        fac1 = i
        fac2fac3 = n // fac1
        for j in f:
            if fac2fac3 % j == 0:
                fac2 = j
                fac3 = fac2fac3 // fac2
                tmin = min(fac1 + fac2 + fac3 - 3, tmin)
                #print(fac1,fac2,fac3)

print(tmin, tmax)
0