結果

問題 No.300 平方数
ユーザー prime_mgmprime_mgm
提出日時 2016-03-08 15:50:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 295 bytes
コンパイル時間 2,219 ms
コンパイル使用メモリ 74,116 KB
実行使用メモリ 54,436 KB
最終ジャッジ日時 2024-09-24 13:56:58
合計ジャッジ時間 9,166 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,984 KB
testcase_01 AC 129 ms
53,868 KB
testcase_02 AC 128 ms
53,708 KB
testcase_03 AC 129 ms
53,972 KB
testcase_04 AC 108 ms
52,488 KB
testcase_05 AC 128 ms
54,064 KB
testcase_06 AC 129 ms
54,340 KB
testcase_07 AC 129 ms
54,012 KB
testcase_08 AC 127 ms
53,964 KB
testcase_09 AC 129 ms
54,260 KB
testcase_10 AC 126 ms
54,168 KB
testcase_11 AC 114 ms
52,728 KB
testcase_12 AC 127 ms
54,068 KB
testcase_13 AC 138 ms
54,168 KB
testcase_14 AC 126 ms
54,120 KB
testcase_15 WA -
testcase_16 AC 123 ms
52,872 KB
testcase_17 AC 129 ms
54,000 KB
testcase_18 AC 127 ms
54,160 KB
testcase_19 AC 116 ms
52,580 KB
testcase_20 AC 129 ms
53,980 KB
testcase_21 AC 137 ms
54,220 KB
testcase_22 AC 137 ms
54,064 KB
testcase_23 AC 133 ms
53,992 KB
testcase_24 AC 134 ms
54,436 KB
testcase_25 AC 138 ms
54,288 KB
testcase_26 AC 131 ms
53,840 KB
testcase_27 AC 118 ms
53,052 KB
testcase_28 AC 137 ms
54,284 KB
testcase_29 AC 137 ms
53,952 KB
testcase_30 AC 124 ms
54,436 KB
testcase_31 AC 128 ms
54,100 KB
testcase_32 AC 137 ms
54,192 KB
testcase_33 AC 133 ms
54,376 KB
testcase_34 AC 125 ms
53,268 KB
testcase_35 AC 133 ms
54,212 KB
testcase_36 AC 133 ms
54,420 KB
testcase_37 AC 134 ms
54,004 KB
testcase_38 AC 116 ms
52,736 KB
testcase_39 AC 134 ms
54,128 KB
testcase_40 AC 132 ms
54,128 KB
testcase_41 AC 134 ms
54,256 KB
testcase_42 AC 130 ms
54,372 KB
testcase_43 AC 117 ms
53,024 KB
testcase_44 AC 134 ms
53,968 KB
testcase_45 AC 132 ms
53,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long x = sc.nextLong();
		sc.close();

		while(x%4==0) x=x/4;

		for(long i=3; i*i<x; i += 2){
			while(x%(i*i) == 0) x=x/(i*i);
		}

		System.out.println(x);

	}
}
0