結果

問題 No.300 平方数
ユーザー 37zigen37zigen
提出日時 2016-05-18 18:43:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 188 ms / 1,000 ms
コード長 1,764 bytes
コンパイル時間 2,889 ms
コンパイル使用メモリ 79,196 KB
実行使用メモリ 59,292 KB
最終ジャッジ日時 2024-10-06 05:34:33
合計ジャッジ時間 12,193 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 173 ms
59,156 KB
testcase_01 AC 178 ms
59,144 KB
testcase_02 AC 177 ms
58,876 KB
testcase_03 AC 177 ms
59,044 KB
testcase_04 AC 182 ms
59,292 KB
testcase_05 AC 184 ms
58,708 KB
testcase_06 AC 179 ms
58,852 KB
testcase_07 AC 181 ms
58,976 KB
testcase_08 AC 184 ms
58,908 KB
testcase_09 AC 183 ms
59,188 KB
testcase_10 AC 181 ms
59,020 KB
testcase_11 AC 185 ms
58,732 KB
testcase_12 AC 181 ms
59,128 KB
testcase_13 AC 185 ms
59,024 KB
testcase_14 AC 184 ms
59,264 KB
testcase_15 AC 183 ms
59,052 KB
testcase_16 AC 184 ms
58,916 KB
testcase_17 AC 185 ms
59,204 KB
testcase_18 AC 183 ms
58,648 KB
testcase_19 AC 182 ms
58,828 KB
testcase_20 AC 185 ms
58,936 KB
testcase_21 AC 187 ms
58,848 KB
testcase_22 AC 178 ms
58,760 KB
testcase_23 AC 182 ms
59,044 KB
testcase_24 AC 184 ms
59,092 KB
testcase_25 AC 182 ms
59,292 KB
testcase_26 AC 188 ms
59,072 KB
testcase_27 AC 186 ms
58,944 KB
testcase_28 AC 184 ms
59,024 KB
testcase_29 AC 184 ms
58,924 KB
testcase_30 AC 184 ms
58,924 KB
testcase_31 AC 188 ms
59,004 KB
testcase_32 AC 183 ms
59,156 KB
testcase_33 AC 185 ms
58,756 KB
testcase_34 AC 181 ms
58,948 KB
testcase_35 AC 181 ms
58,860 KB
testcase_36 AC 185 ms
58,628 KB
testcase_37 AC 179 ms
58,904 KB
testcase_38 AC 183 ms
59,144 KB
testcase_39 AC 183 ms
58,904 KB
testcase_40 AC 182 ms
58,720 KB
testcase_41 AC 182 ms
58,660 KB
testcase_42 AC 182 ms
58,892 KB
testcase_43 AC 183 ms
58,940 KB
testcase_44 AC 184 ms
58,960 KB
testcase_45 AC 183 ms
59,252 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 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(num,1));
			return ret;
		}
	}
	class Factor{
		long base,exp;
		Factor(long base,long exp){
			this.base=base;
			this.exp=exp;
		}
	}
}
0