結果

問題 No.376 立方体のN等分 (2)
ユーザー 37zigen37zigen
提出日時 2016-06-04 23:50:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,169 ms / 5,000 ms
コード長 2,403 bytes
コンパイル時間 2,653 ms
コンパイル使用メモリ 86,144 KB
実行使用メモリ 55,300 KB
最終ジャッジ日時 2024-11-06 21:47:11
合計ジャッジ時間 17,515 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
54,716 KB
testcase_01 AC 159 ms
54,932 KB
testcase_02 AC 295 ms
54,804 KB
testcase_03 AC 274 ms
55,128 KB
testcase_04 AC 1,169 ms
54,844 KB
testcase_05 AC 159 ms
55,076 KB
testcase_06 AC 159 ms
54,824 KB
testcase_07 AC 159 ms
55,128 KB
testcase_08 AC 185 ms
54,764 KB
testcase_09 AC 196 ms
55,116 KB
testcase_10 AC 189 ms
55,068 KB
testcase_11 AC 421 ms
54,740 KB
testcase_12 AC 299 ms
54,972 KB
testcase_13 AC 382 ms
55,220 KB
testcase_14 AC 476 ms
55,216 KB
testcase_15 AC 348 ms
55,232 KB
testcase_16 AC 189 ms
55,300 KB
testcase_17 AC 242 ms
54,880 KB
testcase_18 AC 371 ms
54,732 KB
testcase_19 AC 287 ms
54,852 KB
testcase_20 AC 438 ms
55,080 KB
testcase_21 AC 191 ms
54,948 KB
testcase_22 AC 364 ms
54,948 KB
testcase_23 AC 194 ms
54,984 KB
testcase_24 AC 203 ms
55,092 KB
testcase_25 AC 171 ms
55,220 KB
testcase_26 AC 196 ms
55,108 KB
testcase_27 AC 540 ms
55,180 KB
testcase_28 AC 381 ms
55,124 KB
testcase_29 AC 762 ms
55,060 KB
testcase_30 AC 516 ms
55,244 KB
testcase_31 AC 341 ms
55,008 KB
testcase_32 AC 227 ms
55,176 KB
testcase_33 AC 161 ms
54,848 KB
testcase_34 AC 273 ms
55,044 KB
testcase_35 AC 652 ms
55,064 KB
testcase_36 AC 384 ms
55,124 KB
testcase_37 AC 384 ms
55,076 KB
testcase_38 AC 685 ms
55,052 KB
testcase_39 AC 316 ms
55,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

public class Main{
	public static void main(String[] args){
		new Main().solve();
	}
	void solve(){
		Scanner sc=new Scanner(System.in);
		long N=sc.nextLong();
//		Prime p=new Prime(N);
//		ArrayList<Factor> f=p.primeFactorF(N);
		long min=Long.MAX_VALUE;
		//10^11
		//10^3*10^5
		//i<j<N/(i*j)
		//i*i*j<N
		//i*j*j<N
		for(int i=(int)Math.cbrt(N);i>=1;i--){
			if(N%i==0){
				for(long j=(long)Math.sqrt(N/i);j>=1;j--){
					if(((N/i)%j==0)){
						min=Math.min(min, i-1+j-1+N/(i*j)-1);
						break;
					}
				}
			}
		}
		System.out.println(min+" "+(N-1));
	}
	class Prime{
		long n;
		ArrayList<Integer> ps=new ArrayList<Integer>();
		//n:素因数分解したい最大の数
		Prime(long n){
			this.n=n;
			ps=primeList((int)Math.sqrt(n));
		}
		boolean[] isPrimeArray(int max){
			boolean[] isPrime=new boolean[max+1];
			Arrays.fill(isPrime, true);
			isPrime[0]=isPrime[1]=false;
			for(int i=2;i*i<=max;i++){
				if(isPrime[i]){
					for(int j=2;j*i<=max;j++){
						isPrime[j*i]=false;
					}
				}
			}
			return isPrime;
		}
		/*
		 * max以下の素数のリストを返す
		 */
		ArrayList<Integer> primeList(int max){
			boolean[] isPrime=isPrimeArray(max);
			ArrayList<Integer> primeList=new ArrayList<Integer>();
			for(int i=2;i<=max;i++){
				if(isPrime[i]){
					primeList.add(i);
				}
			}
			return primeList;
		}
		/*
		 * numをprimeListの素数をもとに素因数分解し、因数を
		 * ArrayList<Factor>の形で返す。1は含まれない。
		 * primeListにはnumの平方根以下の素数が含まれていなければならない。
		 *
		 */
		ArrayList<Factor> primeFactorF(ArrayList<Integer> primeList,long num){
			ArrayList<Factor> ret=new ArrayList<Factor>();
			for(int p:primeList){
				int exp=0;
				while(num%p==0){
					num/=p;
					exp++;
				}
				if(exp>0)ret.add(new Factor(p,exp));
			}
			if(num>1)ret.add(new Factor(num,1));
			return ret;
		}
		ArrayList<Factor> primeFactorF(long num){
			ArrayList<Factor> ret=new ArrayList<Factor>();
			for(int p:ps){
				int exp=0;
				while(num%p==0){
					num/=p;
					exp++;
				}
				if(exp>0)ret.add(new Factor(p,exp));
			}
			if(num>1)ret.add(new Factor(num,1));
			return ret;
		}
	}
	class Factor{
		long base,exp;
		Factor(long base,long exp){
			this.base=base;
			this.exp=exp;
		}
	}
}
0