結果

問題 No.375 立方体のN等分 (1)
ユーザー GrenacheGrenache
提出日時 2016-06-08 20:07:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 5,000 ms
コード長 1,051 bytes
コンパイル時間 4,940 ms
コンパイル使用メモリ 81,352 KB
実行使用メモリ 41,464 KB
最終ジャッジ日時 2024-10-11 21:06:05
合計ジャッジ時間 9,600 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
40,840 KB
testcase_01 AC 133 ms
40,952 KB
testcase_02 AC 159 ms
41,388 KB
testcase_03 AC 134 ms
41,192 KB
testcase_04 AC 131 ms
41,040 KB
testcase_05 AC 131 ms
41,236 KB
testcase_06 AC 133 ms
40,900 KB
testcase_07 AC 137 ms
41,156 KB
testcase_08 AC 149 ms
41,108 KB
testcase_09 AC 139 ms
41,200 KB
testcase_10 AC 144 ms
41,352 KB
testcase_11 AC 141 ms
41,172 KB
testcase_12 AC 138 ms
41,228 KB
testcase_13 AC 138 ms
41,100 KB
testcase_14 AC 144 ms
40,948 KB
testcase_15 AC 141 ms
41,436 KB
testcase_16 AC 147 ms
41,080 KB
testcase_17 AC 166 ms
41,464 KB
testcase_18 AC 161 ms
41,228 KB
testcase_19 AC 140 ms
40,924 KB
testcase_20 AC 141 ms
41,100 KB
testcase_21 AC 141 ms
41,288 KB
testcase_22 AC 168 ms
41,372 KB
testcase_23 AC 141 ms
40,952 KB
testcase_24 AC 140 ms
41,368 KB
testcase_25 AC 135 ms
40,840 KB
testcase_26 AC 144 ms
41,184 KB
testcase_27 AC 141 ms
40,952 KB
testcase_28 AC 149 ms
41,328 KB
testcase_29 AC 140 ms
41,336 KB
testcase_30 AC 142 ms
41,336 KB
testcase_31 AC 139 ms
41,236 KB
testcase_32 AC 140 ms
41,264 KB
testcase_33 AC 141 ms
41,244 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