結果

問題 No.376 立方体のN等分 (2)
ユーザー compass19compass19
提出日時 2016-06-06 12:53:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 625 ms / 5,000 ms
コード長 1,168 bytes
コンパイル時間 2,462 ms
コンパイル使用メモリ 79,896 KB
実行使用メモリ 122,512 KB
最終ジャッジ日時 2024-11-06 22:09:04
合計ジャッジ時間 16,990 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
42,584 KB
testcase_01 AC 162 ms
42,648 KB
testcase_02 AC 327 ms
109,592 KB
testcase_03 AC 316 ms
106,800 KB
testcase_04 AC 329 ms
118,820 KB
testcase_05 AC 162 ms
42,468 KB
testcase_06 AC 162 ms
42,516 KB
testcase_07 AC 157 ms
42,712 KB
testcase_08 AC 175 ms
45,688 KB
testcase_09 AC 209 ms
60,096 KB
testcase_10 AC 249 ms
65,384 KB
testcase_11 AC 252 ms
77,732 KB
testcase_12 AC 281 ms
89,464 KB
testcase_13 AC 263 ms
91,252 KB
testcase_14 AC 287 ms
96,900 KB
testcase_15 AC 302 ms
102,776 KB
testcase_16 AC 566 ms
107,220 KB
testcase_17 AC 321 ms
109,680 KB
testcase_18 AC 322 ms
111,848 KB
testcase_19 AC 329 ms
113,488 KB
testcase_20 AC 330 ms
115,500 KB
testcase_21 AC 582 ms
115,536 KB
testcase_22 AC 338 ms
118,472 KB
testcase_23 AC 588 ms
119,748 KB
testcase_24 AC 587 ms
120,964 KB
testcase_25 AC 341 ms
121,136 KB
testcase_26 AC 625 ms
121,364 KB
testcase_27 AC 330 ms
121,960 KB
testcase_28 AC 347 ms
122,304 KB
testcase_29 AC 348 ms
122,212 KB
testcase_30 AC 348 ms
122,156 KB
testcase_31 AC 348 ms
122,356 KB
testcase_32 AC 349 ms
122,200 KB
testcase_33 AC 349 ms
121,948 KB
testcase_34 AC 342 ms
121,904 KB
testcase_35 AC 347 ms
122,512 KB
testcase_36 AC 344 ms
122,084 KB
testcase_37 AC 349 ms
122,292 KB
testcase_38 AC 350 ms
122,216 KB
testcase_39 AC 349 ms
122,224 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 (long 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] = (long)(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);
                        }
                    }
                }
            }
        }
        System.out.println(m+" "+(n-1));
    }
}
0