結果

問題 No.376 立方体のN等分 (2)
ユーザー compass19compass19
提出日時 2016-06-06 12:34:18
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,488 bytes
コンパイル時間 2,139 ms
コンパイル使用メモリ 79,856 KB
実行使用メモリ 125,416 KB
最終ジャッジ日時 2024-10-08 16:33:09
合計ジャッジ時間 15,371 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,912 KB
testcase_01 AC 140 ms
42,044 KB
testcase_02 AC 274 ms
109,028 KB
testcase_03 AC 286 ms
106,220 KB
testcase_04 AC 282 ms
118,904 KB
testcase_05 AC 149 ms
42,412 KB
testcase_06 AC 158 ms
42,048 KB
testcase_07 AC 156 ms
42,284 KB
testcase_08 AC 160 ms
45,156 KB
testcase_09 AC 187 ms
59,816 KB
testcase_10 AC 239 ms
65,480 KB
testcase_11 AC 203 ms
77,588 KB
testcase_12 AC 224 ms
88,848 KB
testcase_13 AC 217 ms
91,120 KB
testcase_14 AC 240 ms
96,252 KB
testcase_15 AC 248 ms
102,572 KB
testcase_16 AC 623 ms
107,032 KB
testcase_17 RE -
testcase_18 AC 256 ms
111,660 KB
testcase_19 RE -
testcase_20 AC 256 ms
115,224 KB
testcase_21 AC 643 ms
115,524 KB
testcase_22 AC 297 ms
118,236 KB
testcase_23 AC 661 ms
119,444 KB
testcase_24 AC 640 ms
120,628 KB
testcase_25 AC 260 ms
120,584 KB
testcase_26 AC 722 ms
121,416 KB
testcase_27 AC 283 ms
121,748 KB
testcase_28 AC 287 ms
121,656 KB
testcase_29 AC 276 ms
122,284 KB
testcase_30 AC 297 ms
122,260 KB
testcase_31 AC 270 ms
122,180 KB
testcase_32 AC 294 ms
121,924 KB
testcase_33 AC 279 ms
121,868 KB
testcase_34 AC 304 ms
121,896 KB
testcase_35 AC 300 ms
122,084 KB
testcase_36 AC 288 ms
121,976 KB
testcase_37 AC 293 ms
122,156 KB
testcase_38 AC 291 ms
122,140 KB
testcase_39 AC 292 ms
121,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long n = sc.nextLong();
        int l = (int)Math.floor(Math.sqrt(n));
        int cbrt = (int)Math.cbrt(n);
        long []y = new long [l];
        int tail = 0;
        for (int i = 1; i <= l; i++){
            if (n%i == 0)   y[tail++] = i;
        }
        long []x = new long [tail];
        for (int i = 0; i < tail; i++){
            x[i] = (int)(n/y[i]);
        }
        long m = -1;
        long a,b;
        for (int i = 0; i < tail; i++){
            if (y[i] <= cbrt){
                a = y[i];
                long sqrt = (long)Math.sqrt(n/a);
                for (int j = i; j < tail; j++){
                    b = y[j];
                    if (n%(a*b) == 0 && b <= sqrt){
                        if (m == -1){
                            m = a+b+(long)(n/(a*b))-3;
                        }else{
                            m = Math.min(a+b+(long)(n/(a*b))-3, m);
                        }
                    }
                    b = x[i];
                    if (n%(a*b) == 0 && b <= sqrt){
                        if (m == -1){
                            m = a+b+(long)(n/(a*b))-3;
                        }else{
                            m = Math.min(a+b+(long)(n/(a*b))-3, m);
                        }
                    }
                }
            }
        }
        System.out.println(m+" "+(n-1));
    }
}
0