結果

問題 No.376 立方体のN等分 (2)
ユーザー compass19compass19
提出日時 2016-06-06 12:46:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 772 ms / 5,000 ms
コード長 1,490 bytes
コンパイル時間 2,342 ms
コンパイル使用メモリ 79,060 KB
実行使用メモリ 122,440 KB
最終ジャッジ日時 2024-11-06 22:08:29
合計ジャッジ時間 16,857 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
42,520 KB
testcase_01 AC 152 ms
42,140 KB
testcase_02 AC 304 ms
108,872 KB
testcase_03 AC 285 ms
106,236 KB
testcase_04 AC 311 ms
118,984 KB
testcase_05 AC 156 ms
41,952 KB
testcase_06 AC 155 ms
42,148 KB
testcase_07 AC 159 ms
42,312 KB
testcase_08 AC 180 ms
45,332 KB
testcase_09 AC 200 ms
59,976 KB
testcase_10 AC 256 ms
65,060 KB
testcase_11 AC 226 ms
77,348 KB
testcase_12 AC 257 ms
89,112 KB
testcase_13 AC 257 ms
90,888 KB
testcase_14 AC 272 ms
96,588 KB
testcase_15 AC 279 ms
102,396 KB
testcase_16 AC 686 ms
107,296 KB
testcase_17 AC 294 ms
109,340 KB
testcase_18 AC 296 ms
111,608 KB
testcase_19 AC 302 ms
113,148 KB
testcase_20 AC 300 ms
115,228 KB
testcase_21 AC 708 ms
115,692 KB
testcase_22 AC 311 ms
118,092 KB
testcase_23 AC 727 ms
119,384 KB
testcase_24 AC 716 ms
120,628 KB
testcase_25 AC 311 ms
122,220 KB
testcase_26 AC 772 ms
121,304 KB
testcase_27 AC 309 ms
121,956 KB
testcase_28 AC 308 ms
122,016 KB
testcase_29 AC 307 ms
121,900 KB
testcase_30 AC 314 ms
121,688 KB
testcase_31 AC 317 ms
122,128 KB
testcase_32 AC 317 ms
122,440 KB
testcase_33 AC 313 ms
122,136 KB
testcase_34 AC 320 ms
122,288 KB
testcase_35 AC 315 ms
121,692 KB
testcase_36 AC 311 ms
122,408 KB
testcase_37 AC 309 ms
122,176 KB
testcase_38 AC 310 ms
121,836 KB
testcase_39 AC 314 ms
121,908 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);
                        }
                    }
                    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