結果

問題 No.300 平方数
ユーザー gu_21816943gu_21816943
提出日時 2017-06-27 01:43:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 76 ms / 1,000 ms
コード長 540 bytes
コンパイル時間 2,259 ms
コンパイル使用メモリ 74,524 KB
実行使用メモリ 51,480 KB
最終ジャッジ日時 2024-10-04 10:00:25
合計ジャッジ時間 6,204 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,540 KB
testcase_01 AC 50 ms
49,832 KB
testcase_02 AC 68 ms
51,268 KB
testcase_03 AC 49 ms
50,144 KB
testcase_04 AC 50 ms
50,304 KB
testcase_05 AC 52 ms
50,372 KB
testcase_06 AC 50 ms
50,212 KB
testcase_07 AC 51 ms
50,468 KB
testcase_08 AC 51 ms
50,348 KB
testcase_09 AC 51 ms
50,476 KB
testcase_10 AC 51 ms
50,272 KB
testcase_11 AC 51 ms
50,308 KB
testcase_12 AC 53 ms
50,400 KB
testcase_13 AC 71 ms
51,136 KB
testcase_14 AC 54 ms
50,576 KB
testcase_15 AC 68 ms
51,272 KB
testcase_16 AC 65 ms
50,900 KB
testcase_17 AC 67 ms
50,904 KB
testcase_18 AC 54 ms
50,376 KB
testcase_19 AC 66 ms
51,100 KB
testcase_20 AC 61 ms
50,552 KB
testcase_21 AC 72 ms
51,076 KB
testcase_22 AC 74 ms
51,312 KB
testcase_23 AC 70 ms
50,860 KB
testcase_24 AC 68 ms
51,228 KB
testcase_25 AC 70 ms
51,056 KB
testcase_26 AC 69 ms
50,996 KB
testcase_27 AC 69 ms
50,888 KB
testcase_28 AC 68 ms
51,224 KB
testcase_29 AC 69 ms
51,480 KB
testcase_30 AC 71 ms
51,212 KB
testcase_31 AC 73 ms
51,184 KB
testcase_32 AC 69 ms
51,340 KB
testcase_33 AC 66 ms
51,140 KB
testcase_34 AC 74 ms
50,696 KB
testcase_35 AC 66 ms
51,188 KB
testcase_36 AC 70 ms
51,356 KB
testcase_37 AC 66 ms
51,040 KB
testcase_38 AC 68 ms
50,652 KB
testcase_39 AC 69 ms
51,416 KB
testcase_40 AC 67 ms
50,964 KB
testcase_41 AC 72 ms
50,756 KB
testcase_42 AC 64 ms
51,144 KB
testcase_43 AC 70 ms
51,216 KB
testcase_44 AC 76 ms
50,656 KB
testcase_45 AC 66 ms
50,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

class Main {
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		double num=Double.parseDouble(br.readLine());
		br.close();

		long y=1;

		double len=Math.sqrt(num);

		int i,tmp;

		for(i=2;i<=len;i++){
			tmp=0;

			while(num%i==0){
				num/=i;
				tmp++;
			}

			if(tmp%2!=0){
				y*=i;
			}
		}
		if(num>1){
			y*=num;
		}
		System.out.println(y);
	}
}
0