結果

問題 No.375 立方体のN等分 (1)
ユーザー atkrymatkrym
提出日時 2016-11-07 21:20:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 548 bytes
コンパイル時間 2,605 ms
コンパイル使用メモリ 77,120 KB
実行使用メモリ 42,608 KB
最終ジャッジ日時 2024-05-03 23:00:37
合計ジャッジ時間 9,263 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
42,376 KB
testcase_01 AC 155 ms
42,076 KB
testcase_02 WA -
testcase_03 AC 156 ms
42,372 KB
testcase_04 AC 160 ms
42,200 KB
testcase_05 WA -
testcase_06 AC 160 ms
42,440 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 163 ms
42,312 KB
testcase_10 AC 167 ms
42,244 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 160 ms
42,188 KB
testcase_15 AC 160 ms
42,460 KB
testcase_16 AC 160 ms
42,504 KB
testcase_17 WA -
testcase_18 AC 147 ms
42,188 KB
testcase_19 WA -
testcase_20 AC 162 ms
42,296 KB
testcase_21 AC 161 ms
42,184 KB
testcase_22 AC 160 ms
42,540 KB
testcase_23 WA -
testcase_24 AC 141 ms
41,656 KB
testcase_25 AC 157 ms
42,248 KB
testcase_26 AC 173 ms
42,344 KB
testcase_27 WA -
testcase_28 AC 178 ms
42,464 KB
testcase_29 AC 173 ms
42,420 KB
testcase_30 AC 170 ms
42,376 KB
testcase_31 WA -
testcase_32 AC 178 ms
42,608 KB
testcase_33 AC 170 ms
42,428 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