結果

問題 No.376 立方体のN等分 (2)
ユーザー H3PO4H3PO4
提出日時 2020-07-10 09:27:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,974 ms / 5,000 ms
コード長 390 bytes
コンパイル時間 755 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 76,080 KB
最終ジャッジ日時 2024-10-09 20:38:01
合計ジャッジ時間 15,496 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,944 KB
testcase_01 AC 37 ms
52,936 KB
testcase_02 AC 148 ms
59,268 KB
testcase_03 AC 149 ms
62,460 KB
testcase_04 AC 167 ms
58,312 KB
testcase_05 AC 37 ms
53,312 KB
testcase_06 AC 37 ms
53,012 KB
testcase_07 AC 37 ms
53,536 KB
testcase_08 AC 44 ms
57,924 KB
testcase_09 AC 66 ms
58,336 KB
testcase_10 AC 189 ms
75,596 KB
testcase_11 AC 97 ms
57,644 KB
testcase_12 AC 118 ms
59,256 KB
testcase_13 AC 120 ms
57,328 KB
testcase_14 AC 128 ms
58,244 KB
testcase_15 AC 137 ms
58,072 KB
testcase_16 AC 1,767 ms
75,776 KB
testcase_17 AC 147 ms
57,932 KB
testcase_18 AC 151 ms
58,428 KB
testcase_19 AC 158 ms
59,860 KB
testcase_20 AC 159 ms
58,076 KB
testcase_21 AC 1,731 ms
75,692 KB
testcase_22 AC 164 ms
59,052 KB
testcase_23 AC 1,792 ms
76,064 KB
testcase_24 AC 1,725 ms
75,644 KB
testcase_25 AC 168 ms
58,272 KB
testcase_26 AC 1,974 ms
76,080 KB
testcase_27 AC 165 ms
57,716 KB
testcase_28 AC 169 ms
58,612 KB
testcase_29 AC 169 ms
58,516 KB
testcase_30 AC 167 ms
58,368 KB
testcase_31 AC 167 ms
58,068 KB
testcase_32 AC 170 ms
58,308 KB
testcase_33 AC 172 ms
57,292 KB
testcase_34 AC 171 ms
57,988 KB
testcase_35 AC 174 ms
58,924 KB
testcase_36 AC 171 ms
58,440 KB
testcase_37 AC 172 ms
58,184 KB
testcase_38 AC 172 ms
57,440 KB
testcase_39 AC 170 ms
57,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools


def isqrt(n):
    x = n
    y = (x + 1) // 2
    while y < x:
        x = y
        y = (x + n // x) // 2
    return x


N = int(input())

div = [i for i in range(1, isqrt(N) + 1) if not N % i]

Nmin = Nmax = N - 1
for i, j in itertools.combinations_with_replacement(div, 2):
    if not N % (i * j):
        Nmin = min(Nmin, i + j + (N // (i * j)) - 3)
print(Nmin, Nmax)
0