結果

問題 No.376 立方体のN等分 (2)
ユーザー H3PO4H3PO4
提出日時 2020-07-10 09:24:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,022 ms / 5,000 ms
コード長 291 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 76,204 KB
最終ジャッジ日時 2024-10-09 20:33:27
合計ジャッジ時間 15,259 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 149 ms
57,472 KB
testcase_03 AC 156 ms
61,568 KB
testcase_04 AC 168 ms
58,496 KB
testcase_05 AC 39 ms
51,584 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 45 ms
57,088 KB
testcase_09 AC 67 ms
57,600 KB
testcase_10 AC 194 ms
75,392 KB
testcase_11 AC 97 ms
57,600 KB
testcase_12 AC 119 ms
58,240 KB
testcase_13 AC 123 ms
57,116 KB
testcase_14 AC 130 ms
56,960 KB
testcase_15 AC 140 ms
56,960 KB
testcase_16 AC 1,787 ms
75,520 KB
testcase_17 AC 153 ms
57,856 KB
testcase_18 AC 153 ms
57,216 KB
testcase_19 AC 161 ms
58,880 KB
testcase_20 AC 160 ms
57,216 KB
testcase_21 AC 1,773 ms
76,204 KB
testcase_22 AC 165 ms
57,088 KB
testcase_23 AC 1,836 ms
75,552 KB
testcase_24 AC 1,756 ms
75,648 KB
testcase_25 AC 169 ms
57,216 KB
testcase_26 AC 2,022 ms
75,824 KB
testcase_27 AC 171 ms
57,600 KB
testcase_28 AC 171 ms
57,600 KB
testcase_29 AC 171 ms
57,216 KB
testcase_30 AC 171 ms
57,344 KB
testcase_31 AC 170 ms
57,344 KB
testcase_32 AC 169 ms
56,960 KB
testcase_33 AC 170 ms
56,960 KB
testcase_34 AC 171 ms
57,600 KB
testcase_35 AC 172 ms
57,728 KB
testcase_36 AC 171 ms
57,600 KB
testcase_37 AC 171 ms
57,728 KB
testcase_38 AC 170 ms
57,344 KB
testcase_39 AC 172 ms
57,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
from math import isqrt

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