結果

問題 No.375 立方体のN等分 (1)
ユーザー htensaihtensai
提出日時 2019-11-21 08:58:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 629 ms / 5,000 ms
コード長 1,334 bytes
コンパイル時間 2,879 ms
コンパイル使用メモリ 83,744 KB
実行使用メモリ 42,956 KB
最終ジャッジ日時 2024-10-09 08:37:09
合計ジャッジ時間 10,480 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
42,464 KB
testcase_01 AC 157 ms
42,316 KB
testcase_02 AC 184 ms
42,672 KB
testcase_03 AC 159 ms
42,548 KB
testcase_04 AC 153 ms
42,372 KB
testcase_05 AC 142 ms
41,912 KB
testcase_06 AC 158 ms
42,548 KB
testcase_07 AC 159 ms
42,232 KB
testcase_08 AC 218 ms
42,584 KB
testcase_09 AC 157 ms
42,048 KB
testcase_10 AC 159 ms
42,300 KB
testcase_11 AC 155 ms
42,216 KB
testcase_12 AC 158 ms
42,288 KB
testcase_13 AC 157 ms
42,500 KB
testcase_14 AC 236 ms
42,708 KB
testcase_15 AC 156 ms
42,304 KB
testcase_16 AC 156 ms
42,268 KB
testcase_17 AC 432 ms
42,952 KB
testcase_18 AC 230 ms
42,776 KB
testcase_19 AC 143 ms
42,424 KB
testcase_20 AC 155 ms
42,180 KB
testcase_21 AC 152 ms
42,300 KB
testcase_22 AC 629 ms
42,956 KB
testcase_23 AC 157 ms
42,320 KB
testcase_24 AC 160 ms
42,124 KB
testcase_25 AC 172 ms
42,780 KB
testcase_26 AC 169 ms
42,680 KB
testcase_27 AC 158 ms
42,468 KB
testcase_28 AC 162 ms
42,388 KB
testcase_29 AC 168 ms
42,596 KB
testcase_30 AC 168 ms
42,528 KB
testcase_31 AC 168 ms
42,384 KB
testcase_32 AC 157 ms
42,312 KB
testcase_33 AC 158 ms
42,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		long org = n;
		HashMap<Long, Integer> map = new HashMap<>();
		for (long i = 2; i <= Math.sqrt(n); i++) {
		    while (n % i == 0) {
		        if (map.containsKey(i)) {
		            map.put(i, map.get(i) + 1);
		        } else {
		            map.put(i, 1);
		        }
		        n /= i;
		    }
		}
		if (n != 1) {
	        if (map.containsKey(n)) {
	            map.put(n, map.get(n) + 1);
	        } else {
	            map.put(n, 1);
	        }
		}
		ArrayDeque<Long> deq = new ArrayDeque<>();
		ArrayDeque<Long> next = new ArrayDeque<>();
		deq.add(1L);
		for (long x : map.keySet()) {
	       while (deq.size() > 0) {
	           long y = deq.poll();
    		   for (int i = 1; i <= map.get(x); i++) {
		           next.add(y * (long)(Math.pow(x, i)));
		       }
		       next.add(y);
		   }
		   ArrayDeque<Long> tmp = deq;
		   deq = next;
		   next = tmp;
		}
		long min = Long.MAX_VALUE;
		ArrayList<Long> list = new ArrayList<Long>(deq);
		for (long x : list) {
		    for (long y : list) {
		        if ((org / x) % y == 0) {
		            min = Math.min(min, x - 1 + y - 1 + org / x / y - 1);
		        }
		    }
		}
	    System.out.println(min + " " + (org - 1));
	}
}
0