結果

問題 No.376 立方体のN等分 (2)
ユーザー ynyn
提出日時 2016-06-05 02:15:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 438 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 63,104 KB
最終ジャッジ日時 2024-10-08 13:55:13
合計ジャッジ時間 14,716 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 156 ms
59,520 KB
testcase_03 AC 159 ms
60,416 KB
testcase_04 AC 176 ms
58,240 KB
testcase_05 AC 35 ms
52,224 KB
testcase_06 AC 36 ms
51,584 KB
testcase_07 AC 37 ms
51,712 KB
testcase_08 AC 44 ms
57,344 KB
testcase_09 AC 66 ms
57,344 KB
testcase_10 AC 167 ms
62,208 KB
testcase_11 AC 98 ms
57,600 KB
testcase_12 AC 121 ms
59,520 KB
testcase_13 AC 121 ms
57,344 KB
testcase_14 AC 131 ms
57,600 KB
testcase_15 AC 142 ms
57,088 KB
testcase_16 AC 1,625 ms
63,104 KB
testcase_17 AC 155 ms
57,856 KB
testcase_18 AC 156 ms
57,600 KB
testcase_19 AC 157 ms
59,136 KB
testcase_20 AC 161 ms
57,600 KB
testcase_21 AC 1,662 ms
62,464 KB
testcase_22 AC 164 ms
57,600 KB
testcase_23 AC 1,689 ms
62,848 KB
testcase_24 AC 1,618 ms
62,464 KB
testcase_25 AC 175 ms
57,472 KB
testcase_26 AC 1,859 ms
62,720 KB
testcase_27 WA -
testcase_28 AC 176 ms
57,728 KB
testcase_29 AC 175 ms
57,088 KB
testcase_30 AC 174 ms
57,600 KB
testcase_31 AC 175 ms
57,088 KB
testcase_32 AC 175 ms
57,512 KB
testcase_33 AC 176 ms
57,600 KB
testcase_34 AC 174 ms
57,600 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 178 ms
57,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
tmax = n - 1
tmin = 10**12
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