結果
問題 | No.300 平方数 |
ユーザー | 37zigen |
提出日時 | 2016-05-18 18:40:06 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,766 bytes |
コンパイル時間 | 2,009 ms |
コンパイル使用メモリ | 78,668 KB |
実行使用メモリ | 61,036 KB |
最終ジャッジ日時 | 2024-10-06 05:34:13 |
合計ジャッジ時間 | 10,977 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 160 ms
58,176 KB |
testcase_01 | AC | 153 ms
58,200 KB |
testcase_02 | AC | 175 ms
58,828 KB |
testcase_03 | AC | 163 ms
58,924 KB |
testcase_04 | AC | 170 ms
58,872 KB |
testcase_05 | AC | 164 ms
58,816 KB |
testcase_06 | AC | 163 ms
58,812 KB |
testcase_07 | AC | 169 ms
58,832 KB |
testcase_08 | AC | 166 ms
58,872 KB |
testcase_09 | AC | 175 ms
58,940 KB |
testcase_10 | AC | 166 ms
58,664 KB |
testcase_11 | AC | 167 ms
58,812 KB |
testcase_12 | AC | 160 ms
58,100 KB |
testcase_13 | AC | 176 ms
58,932 KB |
testcase_14 | AC | 172 ms
58,700 KB |
testcase_15 | AC | 167 ms
58,780 KB |
testcase_16 | AC | 159 ms
58,916 KB |
testcase_17 | AC | 171 ms
58,856 KB |
testcase_18 | AC | 168 ms
58,944 KB |
testcase_19 | AC | 168 ms
58,712 KB |
testcase_20 | AC | 156 ms
58,320 KB |
testcase_21 | AC | 170 ms
58,912 KB |
testcase_22 | AC | 168 ms
58,800 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 166 ms
59,112 KB |
testcase_39 | AC | 169 ms
58,936 KB |
testcase_40 | AC | 170 ms
58,968 KB |
testcase_41 | WA | - |
testcase_42 | AC | 157 ms
58,164 KB |
testcase_43 | AC | 169 ms
58,868 KB |
testcase_44 | AC | 167 ms
58,908 KB |
testcase_45 | AC | 175 ms
58,980 KB |
ソースコード
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 x=sc.nextLong(); Prime p=new Prime(); ArrayList<Integer> ps=p.primeList(1_000_000); ArrayList<Factor> fs=p.primeFactorF(ps, x); long y=1; for(Factor f:fs){ if(f.exp%2==0){ continue; }else{ y*=f.base; } } System.out.println(y); } class Prime{ 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>の形で返す。 * 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((int)num,1)); return ret; } } class Factor{ int base,exp; Factor(int base,int exp){ this.base=base; this.exp=exp; } } }