結果

問題 No.375 立方体のN等分 (1)
ユーザー atkrymatkrym
提出日時 2016-11-07 21:20:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 548 bytes
コンパイル時間 2,203 ms
コンパイル使用メモリ 77,060 KB
実行使用メモリ 55,372 KB
最終ジャッジ日時 2024-11-25 04:29:41
合計ジャッジ時間 8,088 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,084 KB
testcase_01 AC 150 ms
54,664 KB
testcase_02 WA -
testcase_03 AC 147 ms
54,868 KB
testcase_04 AC 139 ms
54,972 KB
testcase_05 WA -
testcase_06 AC 136 ms
54,616 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 142 ms
54,740 KB
testcase_10 AC 146 ms
54,784 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 140 ms
54,992 KB
testcase_15 AC 137 ms
54,844 KB
testcase_16 AC 152 ms
55,084 KB
testcase_17 WA -
testcase_18 AC 150 ms
55,128 KB
testcase_19 WA -
testcase_20 AC 141 ms
54,908 KB
testcase_21 AC 134 ms
54,632 KB
testcase_22 AC 154 ms
54,744 KB
testcase_23 WA -
testcase_24 AC 147 ms
54,672 KB
testcase_25 AC 146 ms
55,076 KB
testcase_26 AC 154 ms
55,104 KB
testcase_27 WA -
testcase_28 AC 168 ms
54,888 KB
testcase_29 AC 155 ms
54,932 KB
testcase_30 AC 145 ms
54,924 KB
testcase_31 WA -
testcase_32 AC 156 ms
55,012 KB
testcase_33 AC 137 ms
54,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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