結果

問題 No.376 立方体のN等分 (2)
ユーザー GrenacheGrenache
提出日時 2016-06-08 20:07:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 416 ms / 5,000 ms
コード長 1,051 bytes
コンパイル時間 3,967 ms
コンパイル使用メモリ 79,272 KB
実行使用メモリ 42,460 KB
最終ジャッジ日時 2024-11-06 23:29:21
合計ジャッジ時間 15,066 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,680 KB
testcase_01 AC 136 ms
41,444 KB
testcase_02 AC 245 ms
41,528 KB
testcase_03 AC 244 ms
41,304 KB
testcase_04 AC 260 ms
41,616 KB
testcase_05 AC 140 ms
41,244 KB
testcase_06 AC 135 ms
41,296 KB
testcase_07 AC 136 ms
41,600 KB
testcase_08 AC 149 ms
41,472 KB
testcase_09 AC 166 ms
41,452 KB
testcase_10 AC 202 ms
41,688 KB
testcase_11 AC 180 ms
40,256 KB
testcase_12 AC 214 ms
41,468 KB
testcase_13 AC 212 ms
41,368 KB
testcase_14 AC 216 ms
41,432 KB
testcase_15 AC 217 ms
40,536 KB
testcase_16 AC 378 ms
42,224 KB
testcase_17 AC 236 ms
41,364 KB
testcase_18 AC 243 ms
41,560 KB
testcase_19 AC 247 ms
41,444 KB
testcase_20 AC 247 ms
41,384 KB
testcase_21 AC 390 ms
42,300 KB
testcase_22 AC 258 ms
41,532 KB
testcase_23 AC 403 ms
42,176 KB
testcase_24 AC 381 ms
42,276 KB
testcase_25 AC 255 ms
41,296 KB
testcase_26 AC 416 ms
42,460 KB
testcase_27 AC 254 ms
41,452 KB
testcase_28 AC 258 ms
41,268 KB
testcase_29 AC 259 ms
41,320 KB
testcase_30 AC 258 ms
41,244 KB
testcase_31 AC 260 ms
41,288 KB
testcase_32 AC 259 ms
41,576 KB
testcase_33 AC 259 ms
41,428 KB
testcase_34 AC 262 ms
41,336 KB
testcase_35 AC 257 ms
41,396 KB
testcase_36 AC 247 ms
40,260 KB
testcase_37 AC 256 ms
41,308 KB
testcase_38 AC 256 ms
41,340 KB
testcase_39 AC 267 ms
41,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;


public class Main_yukicoder375 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        long n = sc.nextLong();

        List<Long> divisors = new ArrayList<>();
        for (long i = 1; i * i <= n; i++) {
        	if (n % i == 0) {
        		divisors.add(i);
        		if (i != n / i) {
        			divisors.add(n / i);
        		}
        	}
        }
        Collections.sort(divisors);

        long min = n - 1;
        long max = n - 1;
        for (int i = 0; i < divisors.size(); i++) {
    		long x = divisors.get(i);
    		if (x * x * x > n) {
    			break;
    		}
        	for (int j = i; j < divisors.size(); j++) {
        		long y = divisors.get(j);
        		if (x * y * y > n) {
        			break;
        		}
        		if (n % (x * y) != 0) {
        			continue;
        		}
        		long z = n / (x * y);

        		min = Math.min(min, (x - 1) + (y - 1) + (z - 1));
        	}
        }

        System.out.printf("%d %d\n", min, max);

        sc.close();
    }
}
0