結果

問題 No.300 平方数
ユーザー prime_mgmprime_mgm
提出日時 2016-03-08 15:52:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 298 bytes
コンパイル時間 1,954 ms
コンパイル使用メモリ 74,108 KB
実行使用メモリ 54,360 KB
最終ジャッジ日時 2024-09-24 13:57:47
合計ジャッジ時間 8,987 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
53,956 KB
testcase_01 AC 122 ms
53,812 KB
testcase_02 AC 125 ms
54,220 KB
testcase_03 AC 114 ms
52,972 KB
testcase_04 AC 121 ms
53,944 KB
testcase_05 AC 125 ms
53,856 KB
testcase_06 AC 125 ms
53,908 KB
testcase_07 AC 113 ms
53,072 KB
testcase_08 AC 114 ms
52,748 KB
testcase_09 AC 108 ms
52,728 KB
testcase_10 AC 122 ms
54,156 KB
testcase_11 AC 118 ms
53,904 KB
testcase_12 AC 123 ms
53,924 KB
testcase_13 AC 122 ms
53,580 KB
testcase_14 AC 121 ms
53,900 KB
testcase_15 AC 116 ms
54,104 KB
testcase_16 AC 127 ms
54,024 KB
testcase_17 AC 120 ms
54,192 KB
testcase_18 AC 110 ms
52,988 KB
testcase_19 AC 109 ms
53,020 KB
testcase_20 AC 121 ms
54,244 KB
testcase_21 AC 121 ms
53,972 KB
testcase_22 AC 118 ms
54,020 KB
testcase_23 AC 119 ms
53,240 KB
testcase_24 AC 111 ms
53,100 KB
testcase_25 AC 124 ms
53,244 KB
testcase_26 AC 127 ms
54,016 KB
testcase_27 AC 122 ms
53,976 KB
testcase_28 AC 130 ms
54,048 KB
testcase_29 AC 132 ms
54,004 KB
testcase_30 AC 124 ms
53,212 KB
testcase_31 AC 125 ms
53,984 KB
testcase_32 AC 128 ms
53,932 KB
testcase_33 AC 128 ms
53,868 KB
testcase_34 AC 131 ms
54,056 KB
testcase_35 AC 111 ms
53,364 KB
testcase_36 AC 114 ms
53,384 KB
testcase_37 AC 125 ms
53,992 KB
testcase_38 AC 118 ms
54,140 KB
testcase_39 AC 130 ms
53,988 KB
testcase_40 AC 131 ms
54,012 KB
testcase_41 AC 130 ms
54,360 KB
testcase_42 AC 117 ms
52,968 KB
testcase_43 AC 115 ms
52,988 KB
testcase_44 AC 130 ms
53,932 KB
testcase_45 AC 127 ms
54,168 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