結果

問題 No.300 平方数
ユーザー gu_21816943gu_21816943
提出日時 2017-06-27 01:34:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 511 bytes
コンパイル時間 2,119 ms
コンパイル使用メモリ 74,388 KB
実行使用メモリ 58,568 KB
最終ジャッジ日時 2024-10-04 09:59:41
合計ジャッジ時間 5,806 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 50 ms
50,308 KB
testcase_02 WA -
testcase_03 AC 52 ms
50,544 KB
testcase_04 AC 49 ms
50,336 KB
testcase_05 AC 50 ms
49,932 KB
testcase_06 AC 51 ms
50,272 KB
testcase_07 WA -
testcase_08 AC 51 ms
50,300 KB
testcase_09 AC 50 ms
50,476 KB
testcase_10 AC 51 ms
50,040 KB
testcase_11 AC 51 ms
50,380 KB
testcase_12 AC 49 ms
50,212 KB
testcase_13 AC 73 ms
50,988 KB
testcase_14 AC 49 ms
50,520 KB
testcase_15 WA -
testcase_16 AC 50 ms
50,364 KB
testcase_17 AC 52 ms
50,312 KB
testcase_18 AC 50 ms
50,384 KB
testcase_19 AC 50 ms
50,652 KB
testcase_20 AC 52 ms
50,364 KB
testcase_21 AC 51 ms
50,360 KB
testcase_22 AC 51 ms
50,532 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
権限があれば一括ダウンロードができます

ソースコード

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;

		int i;

		for(i=2;i*i<num;i++){
			int 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