結果

問題 No.375 立方体のN等分 (1)
ユーザー atkrymatkrym
提出日時 2016-11-07 21:18:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 536 bytes
コンパイル時間 2,188 ms
コンパイル使用メモリ 76,528 KB
実行使用メモリ 111,760 KB
最終ジャッジ日時 2024-11-25 04:29:31
合計ジャッジ時間 100,125 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
61,492 KB
testcase_01 AC 150 ms
109,224 KB
testcase_02 WA -
testcase_03 AC 143 ms
109,240 KB
testcase_04 AC 143 ms
108,868 KB
testcase_05 WA -
testcase_06 AC 210 ms
109,092 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 663 ms
55,184 KB
testcase_15 AC 690 ms
55,164 KB
testcase_16 TLE -
testcase_17 WA -
testcase_18 AC 756 ms
55,044 KB
testcase_19 WA -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 780 ms
54,880 KB
testcase_23 TLE -
testcase_24 AC 802 ms
54,912 KB
testcase_25 AC 820 ms
54,760 KB
testcase_26 TLE -
testcase_27 WA -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
権限があれば一括ダウンロードができます

ソースコード

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 < n/a;i++) {
            if ((n/a)%i==0) min = Math.min(min,a+(n/a)/i+i);
        }
        System.out.println((min-3)+" "+max);
    }
}
0