結果
問題 | No.375 立方体のN等分 (1) |
ユーザー | 37zigen |
提出日時 | 2016-06-04 23:29:51 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,298 bytes |
コンパイル時間 | 2,538 ms |
コンパイル使用メモリ | 81,408 KB |
実行使用メモリ | 54,372 KB |
最終ジャッジ日時 | 2024-10-08 10:03:49 |
合計ジャッジ時間 | 8,705 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 163 ms
42,292 KB |
testcase_01 | AC | 155 ms
42,268 KB |
testcase_02 | RE | - |
testcase_03 | AC | 169 ms
42,320 KB |
testcase_04 | AC | 168 ms
42,268 KB |
testcase_05 | AC | 168 ms
41,920 KB |
testcase_06 | AC | 165 ms
42,096 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
ソースコード
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); int N=sc.nextInt(); // Prime p=new Prime(N); // ArrayList<Factor> f=p.primeFactorF(N); int min=Integer.MAX_VALUE; for(int i=1;i*i*i<=N;i++){ if(N%i==0){ for(int j=i;j*j*i<=N;j++){ if(((N/i)%j==0)){ min=Math.min(min, i-1+j-1+N/(i*j)-1); } } } } 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; } } }