結果

問題 No.376 立方体のN等分 (2)
ユーザー rlangevinrlangevin
提出日時 2023-08-04 00:01:32
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 428 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 87,168 KB
最終ジャッジ日時 2024-10-13 21:03:30
合計ジャッジ時間 13,756 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 654 ms
59,392 KB
testcase_03 AC 1,237 ms
64,384 KB
testcase_04 AC 874 ms
59,264 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 37 ms
51,712 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 AC 57 ms
57,344 KB
testcase_09 AC 117 ms
56,960 KB
testcase_10 AC 1,178 ms
75,648 KB
testcase_11 AC 268 ms
57,216 KB
testcase_12 AC 546 ms
59,776 KB
testcase_13 AC 284 ms
56,832 KB
testcase_14 AC 340 ms
57,216 KB
testcase_15 AC 264 ms
56,704 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

N = int(input())
minv, maxv = 10 ** 18, 0
for d1 in div(N):
    temp = N // d1
    for d2 in div(temp):
        d3 = temp // d2
        minv = min(minv, d1 + d2 + d3 - 3)
        maxv = max(maxv, d1 + d2 + d3 - 3)

print(minv, maxv)
0