結果

問題 No.376 立方体のN等分 (2)
ユーザー rlangevinrlangevin
提出日時 2024-03-05 08:54:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,984 ms / 5,000 ms
コード長 536 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 81,880 KB
実行使用メモリ 70,568 KB
最終ジャッジ日時 2024-09-29 17:48:24
合計ジャッジ時間 19,811 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,444 KB
testcase_01 AC 37 ms
52,940 KB
testcase_02 AC 151 ms
60,596 KB
testcase_03 AC 151 ms
62,732 KB
testcase_04 AC 164 ms
60,400 KB
testcase_05 AC 38 ms
53,888 KB
testcase_06 AC 37 ms
52,208 KB
testcase_07 AC 38 ms
53,040 KB
testcase_08 AC 45 ms
57,740 KB
testcase_09 AC 65 ms
57,388 KB
testcase_10 AC 249 ms
66,176 KB
testcase_11 AC 94 ms
57,920 KB
testcase_12 AC 117 ms
59,872 KB
testcase_13 AC 115 ms
58,068 KB
testcase_14 AC 123 ms
59,172 KB
testcase_15 AC 134 ms
58,064 KB
testcase_16 AC 2,175 ms
69,780 KB
testcase_17 AC 162 ms
59,372 KB
testcase_18 AC 163 ms
58,736 KB
testcase_19 AC 176 ms
61,868 KB
testcase_20 AC 172 ms
57,920 KB
testcase_21 AC 2,921 ms
69,012 KB
testcase_22 AC 157 ms
58,164 KB
testcase_23 AC 2,745 ms
69,600 KB
testcase_24 AC 2,629 ms
68,284 KB
testcase_25 AC 164 ms
58,832 KB
testcase_26 AC 2,984 ms
70,568 KB
testcase_27 AC 162 ms
58,356 KB
testcase_28 AC 162 ms
57,528 KB
testcase_29 AC 162 ms
56,672 KB
testcase_30 AC 165 ms
57,428 KB
testcase_31 AC 165 ms
58,268 KB
testcase_32 AC 164 ms
56,956 KB
testcase_33 AC 162 ms
58,792 KB
testcase_34 AC 164 ms
57,996 KB
testcase_35 AC 161 ms
58,064 KB
testcase_36 AC 162 ms
58,028 KB
testcase_37 AC 161 ms
58,256 KB
testcase_38 AC 161 ms
59,112 KB
testcase_39 AC 164 ms
59,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def div(n):
    i = 1
    SS = set()
    while i * i <= n:
        if n % i == 0:
            SS.add(i)
            SS.add(n//i)
        i += 1
    return sorted(list(SS))

N = int(input())
L = div(N)
M = len(L)
mi = 10 ** 18
ma = 0
for i in range(M):
    d1 = L[i]
    N1 = N // d1
    for j in range(i, M):
        d2 = L[j]
        if N1 % d2 != 0:
            continue
        d3 = N1 // d2
        if d3 < d2:
            continue
        mi = min(mi, d1 + d2 + d3 - 3)
        ma = max(ma, d1 + d2 + d3 - 3)
        
print(mi, ma)
0