結果

問題 No.375 立方体のN等分 (1)
ユーザー sue_charosue_charo
提出日時 2017-08-26 16:06:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,391 ms / 5,000 ms
コード長 695 bytes
コンパイル時間 1,153 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 24,704 KB
最終ジャッジ日時 2024-10-15 17:43:36
合計ジャッジ時間 14,071 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 467 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 28 ms
10,496 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 33 ms
10,496 KB
testcase_07 AC 85 ms
10,624 KB
testcase_08 AC 315 ms
11,776 KB
testcase_09 AC 92 ms
10,624 KB
testcase_10 AC 161 ms
10,624 KB
testcase_11 AC 161 ms
10,624 KB
testcase_12 AC 183 ms
10,624 KB
testcase_13 AC 186 ms
10,624 KB
testcase_14 AC 1,054 ms
14,336 KB
testcase_15 AC 251 ms
10,496 KB
testcase_16 AC 193 ms
10,624 KB
testcase_17 AC 1,783 ms
17,280 KB
testcase_18 AC 1,157 ms
14,208 KB
testcase_19 AC 244 ms
10,624 KB
testcase_20 AC 152 ms
10,496 KB
testcase_21 AC 152 ms
10,624 KB
testcase_22 AC 2,391 ms
24,704 KB
testcase_23 AC 222 ms
10,624 KB
testcase_24 AC 148 ms
10,624 KB
testcase_25 AC 430 ms
10,752 KB
testcase_26 AC 210 ms
10,624 KB
testcase_27 AC 258 ms
10,496 KB
testcase_28 AC 152 ms
10,496 KB
testcase_29 AC 154 ms
10,624 KB
testcase_30 AC 195 ms
10,624 KB
testcase_31 AC 236 ms
10,624 KB
testcase_32 AC 156 ms
10,624 KB
testcase_33 AC 213 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
import math

def II(): return int(input())
def ILI(): return list(map(int, input().split()))


def read():
    N = II()
    return (N,)


def solve(N):
    l_t = []
    for i in range(1, int(math.sqrt(N)) + 1):
        i_div, i_mod = divmod(N, i)
        if i_mod == 0:
            for j in range(1, int(math.sqrt(i_div)) + 1):
                j_div, j_mod = divmod(i_div, j)
                if j_mod == 0:
                    t = i + j + j_div - 3
                    l_t.append(t)
    t_min = min(l_t)
    t_max = max(l_t)
    ans = "{} {}".format(t_min, t_max)
    return ans


def main():
    params = read()
    print(solve(*params))


if __name__ == "__main__":
    main()
0