結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
42,352 KB
testcase_01 AC 156 ms
42,272 KB
testcase_02 AC 314 ms
109,312 KB
testcase_03 AC 306 ms
106,084 KB
testcase_04 AC 331 ms
119,192 KB
testcase_05 AC 156 ms
42,404 KB
testcase_06 AC 152 ms
42,000 KB
testcase_07 AC 155 ms
42,284 KB
testcase_08 AC 167 ms
45,480 KB
testcase_09 AC 200 ms
59,568 KB
testcase_10 AC 232 ms
65,084 KB
testcase_11 AC 241 ms
77,336 KB
testcase_12 AC 269 ms
89,236 KB
testcase_13 AC 270 ms
91,308 KB
testcase_14 AC 285 ms
96,348 KB
testcase_15 AC 297 ms
102,608 KB
testcase_16 AC 545 ms
106,744 KB
testcase_17 AC 314 ms
109,200 KB
testcase_18 AC 314 ms
111,596 KB
testcase_19 AC 323 ms
113,588 KB
testcase_20 AC 320 ms
115,052 KB
testcase_21 AC 576 ms
115,188 KB
testcase_22 AC 339 ms
118,724 KB
testcase_23 AC 567 ms
119,384 KB
testcase_24 AC 563 ms
120,556 KB
testcase_25 AC 335 ms
121,148 KB
testcase_26 AC 615 ms
121,268 KB
testcase_27 AC 336 ms
121,840 KB
testcase_28 AC 337 ms
121,944 KB
testcase_29 AC 337 ms
122,196 KB
testcase_30 AC 343 ms
122,172 KB
testcase_31 AC 341 ms
121,984 KB
testcase_32 AC 342 ms
122,180 KB
testcase_33 AC 332 ms
121,892 KB
testcase_34 AC 339 ms
122,184 KB
testcase_35 AC 336 ms
122,012 KB
testcase_36 AC 336 ms
122,296 KB
testcase_37 AC 339 ms
121,880 KB
testcase_38 AC 329 ms
121,968 KB
testcase_39 AC 349 ms
122,000 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