結果

問題 No.375 立方体のN等分 (1)
ユーザー atkrymatkrym
提出日時 2016-11-07 21:32:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 497 ms / 5,000 ms
コード長 610 bytes
コンパイル時間 2,016 ms
コンパイル使用メモリ 76,428 KB
実行使用メモリ 55,368 KB
最終ジャッジ日時 2024-11-25 04:30:29
合計ジャッジ時間 9,704 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,392 KB
testcase_01 AC 152 ms
54,852 KB
testcase_02 AC 219 ms
55,040 KB
testcase_03 AC 149 ms
55,108 KB
testcase_04 AC 151 ms
54,940 KB
testcase_05 AC 147 ms
54,720 KB
testcase_06 AC 142 ms
55,004 KB
testcase_07 AC 164 ms
55,108 KB
testcase_08 AC 176 ms
55,000 KB
testcase_09 AC 159 ms
55,204 KB
testcase_10 AC 167 ms
55,208 KB
testcase_11 AC 164 ms
55,084 KB
testcase_12 AC 182 ms
55,008 KB
testcase_13 AC 174 ms
55,176 KB
testcase_14 AC 305 ms
55,036 KB
testcase_15 AC 179 ms
55,140 KB
testcase_16 AC 175 ms
54,704 KB
testcase_17 AC 423 ms
55,160 KB
testcase_18 AC 333 ms
54,860 KB
testcase_19 AC 183 ms
55,080 KB
testcase_20 AC 168 ms
55,100 KB
testcase_21 AC 169 ms
55,312 KB
testcase_22 AC 497 ms
55,272 KB
testcase_23 AC 181 ms
54,988 KB
testcase_24 AC 170 ms
55,236 KB
testcase_25 AC 225 ms
55,172 KB
testcase_26 AC 181 ms
55,092 KB
testcase_27 AC 175 ms
55,172 KB
testcase_28 AC 161 ms
54,784 KB
testcase_29 AC 166 ms
55,368 KB
testcase_30 AC 180 ms
55,256 KB
testcase_31 AC 178 ms
54,788 KB
testcase_32 AC 159 ms
55,004 KB
testcase_33 AC 174 ms
55,200 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;
        for (long i = 1;i <= (long) Math.cbrt(n);i++) {
            if (n%i==0) {
                for (long j = 1;j <= (long) Math.sqrt(n/i);j++) {
                    if ((n/i)%j==0) {
                        min = Math.min(min,i+(n/i)/j+j);
                    }
                }
            }
        }
        System.out.println((min-3)+" "+max);
    }
}
0