結果

問題 No.300 平方数
ユーザー gu_21816943gu_21816943
提出日時 2017-06-27 01:35:44
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 512 bytes
コンパイル時間 2,111 ms
コンパイル使用メモリ 74,528 KB
実行使用メモリ 59,068 KB
最終ジャッジ日時 2024-10-04 09:59:53
合計ジャッジ時間 6,057 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
57,004 KB
testcase_01 AC 50 ms
50,392 KB
testcase_02 AC 49 ms
50,236 KB
testcase_03 AC 50 ms
50,100 KB
testcase_04 AC 51 ms
50,464 KB
testcase_05 AC 51 ms
50,316 KB
testcase_06 AC 51 ms
50,284 KB
testcase_07 AC 50 ms
50,268 KB
testcase_08 AC 50 ms
50,140 KB
testcase_09 AC 49 ms
50,316 KB
testcase_10 AC 49 ms
50,300 KB
testcase_11 AC 49 ms
50,084 KB
testcase_12 AC 47 ms
50,552 KB
testcase_13 AC 67 ms
51,084 KB
testcase_14 AC 49 ms
50,464 KB
testcase_15 AC 50 ms
50,276 KB
testcase_16 AC 49 ms
50,136 KB
testcase_17 AC 50 ms
50,396 KB
testcase_18 AC 48 ms
49,884 KB
testcase_19 AC 49 ms
50,332 KB
testcase_20 AC 51 ms
50,352 KB
testcase_21 AC 49 ms
49,784 KB
testcase_22 AC 48 ms
50,132 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