結果

問題 No.375 立方体のN等分 (1)
ユーザー tentententen
提出日時 2020-12-04 18:11:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 290 ms / 5,000 ms
コード長 736 bytes
コンパイル時間 2,653 ms
コンパイル使用メモリ 76,280 KB
実行使用メモリ 42,424 KB
最終ジャッジ日時 2024-09-15 04:57:04
合計ジャッジ時間 9,957 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
42,280 KB
testcase_01 AC 146 ms
42,032 KB
testcase_02 AC 192 ms
41,848 KB
testcase_03 AC 153 ms
41,940 KB
testcase_04 AC 143 ms
41,792 KB
testcase_05 AC 154 ms
41,700 KB
testcase_06 AC 156 ms
41,920 KB
testcase_07 AC 163 ms
42,028 KB
testcase_08 AC 177 ms
41,848 KB
testcase_09 AC 164 ms
42,012 KB
testcase_10 AC 173 ms
42,240 KB
testcase_11 AC 166 ms
42,016 KB
testcase_12 AC 174 ms
42,344 KB
testcase_13 AC 174 ms
42,420 KB
testcase_14 AC 224 ms
41,568 KB
testcase_15 AC 176 ms
42,176 KB
testcase_16 AC 174 ms
42,340 KB
testcase_17 AC 258 ms
41,932 KB
testcase_18 AC 225 ms
42,108 KB
testcase_19 AC 176 ms
41,656 KB
testcase_20 AC 171 ms
42,024 KB
testcase_21 AC 169 ms
41,708 KB
testcase_22 AC 290 ms
42,424 KB
testcase_23 AC 175 ms
42,240 KB
testcase_24 AC 170 ms
41,932 KB
testcase_25 AC 187 ms
42,240 KB
testcase_26 AC 176 ms
42,204 KB
testcase_27 AC 190 ms
42,028 KB
testcase_28 AC 183 ms
42,188 KB
testcase_29 AC 167 ms
42,272 KB
testcase_30 AC 173 ms
42,244 KB
testcase_31 AC 179 ms
42,328 KB
testcase_32 AC 172 ms
41,844 KB
testcase_33 AC 179 ms
42,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long n = sc.nextLong();
        long max = 0;
        long min = Long.MAX_VALUE;
        for (long i = 1; i <= Math.sqrt(n); i++) {
            if (n % i == 0) {
                long m = n / i;
                for (long j = i; j <= Math.sqrt(m); j++) {
                    if (m % j == 0) {
                        long k = m / j;
                        long sum = i + j + k - 3;
                        max = Math.max(max, sum);
                        min = Math.min(min, sum);
                    }
                }
            }
        }
        System.out.println(min + " " + max);
    }
}
0