結果

問題 No.300 平方数
ユーザー YamaKasaYamaKasa
提出日時 2018-09-10 00:18:23
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 414 bytes
コンパイル時間 2,338 ms
コンパイル使用メモリ 73,892 KB
実行使用メモリ 41,484 KB
最終ジャッジ日時 2024-12-24 19:53:29
合計ジャッジ時間 11,087 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
40,956 KB
testcase_01 AC 146 ms
41,016 KB
testcase_02 AC 141 ms
40,964 KB
testcase_03 AC 148 ms
41,212 KB
testcase_04 AC 143 ms
41,360 KB
testcase_05 AC 144 ms
40,960 KB
testcase_06 AC 147 ms
41,460 KB
testcase_07 AC 145 ms
41,388 KB
testcase_08 AC 128 ms
40,028 KB
testcase_09 AC 150 ms
41,016 KB
testcase_10 AC 145 ms
41,260 KB
testcase_11 AC 143 ms
41,328 KB
testcase_12 WA -
testcase_13 AC 163 ms
41,096 KB
testcase_14 WA -
testcase_15 AC 132 ms
40,380 KB
testcase_16 AC 154 ms
41,328 KB
testcase_17 AC 145 ms
41,224 KB
testcase_18 AC 149 ms
40,844 KB
testcase_19 AC 150 ms
41,136 KB
testcase_20 AC 152 ms
41,236 KB
testcase_21 AC 159 ms
41,112 KB
testcase_22 AC 151 ms
41,136 KB
testcase_23 WA -
testcase_24 AC 154 ms
41,316 KB
testcase_25 AC 162 ms
41,044 KB
testcase_26 AC 158 ms
41,132 KB
testcase_27 AC 155 ms
41,408 KB
testcase_28 AC 163 ms
41,484 KB
testcase_29 AC 151 ms
39,968 KB
testcase_30 AC 164 ms
41,016 KB
testcase_31 AC 147 ms
41,372 KB
testcase_32 AC 157 ms
41,300 KB
testcase_33 AC 140 ms
40,344 KB
testcase_34 AC 161 ms
41,380 KB
testcase_35 AC 158 ms
41,216 KB
testcase_36 AC 164 ms
41,332 KB
testcase_37 AC 162 ms
41,160 KB
testcase_38 WA -
testcase_39 AC 160 ms
41,332 KB
testcase_40 AC 158 ms
41,060 KB
testcase_41 AC 154 ms
41,060 KB
testcase_42 AC 152 ms
41,084 KB
testcase_43 WA -
testcase_44 AC 159 ms
41,144 KB
testcase_45 AC 157 ms
41,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		long X = scan.nextLong();
		scan.close();
		long x = (long)Math.sqrt(X);
		if(x * x == X) {
			System.out.println(1);
		}else {
			long y = 4;
			long k = 2;
			while(y < X) {
				if(X % y == 0) {
					X = X / y;
				}
				k++;
				y = k * k;
			}
			System.out.println(X);
		}
	}
}
0