結果

問題 No.300 平方数
ユーザー spaciaspacia
提出日時 2016-01-12 23:33:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,084 bytes
コンパイル時間 2,482 ms
コンパイル使用メモリ 77,760 KB
実行使用メモリ 52,976 KB
最終ジャッジ日時 2024-09-19 18:53:50
合計ジャッジ時間 5,492 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
36,988 KB
testcase_01 AC 45 ms
37,260 KB
testcase_02 AC 58 ms
37,244 KB
testcase_03 AC 45 ms
37,208 KB
testcase_04 AC 47 ms
36,508 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 43 ms
36,964 KB
testcase_08 AC 44 ms
36,936 KB
testcase_09 AC 45 ms
37,180 KB
testcase_10 AC 44 ms
36,972 KB
testcase_11 AC 44 ms
36,660 KB
testcase_12 AC 45 ms
37,116 KB
testcase_13 WA -
testcase_14 AC 46 ms
37,036 KB
testcase_15 AC 54 ms
36,904 KB
testcase_16 AC 52 ms
36,500 KB
testcase_17 AC 60 ms
37,388 KB
testcase_18 AC 45 ms
36,992 KB
testcase_19 AC 52 ms
36,908 KB
testcase_20 WA -
testcase_21 AC 61 ms
37,740 KB
testcase_22 AC 61 ms
37,488 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 68 ms
37,660 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 61 ms
37,488 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 50 ms
36,760 KB
testcase_34 AC 59 ms
37,548 KB
testcase_35 AC 54 ms
36,936 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 56 ms
36,784 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 55 ms
37,260 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static boolean isPrime (long n) {
		for (int i = 3; i * i <= n; i += 2) {
			if (n % i == 0) return false;
		}
		return true;
	}
	
	public static long solve (long n) {
		int max = 12 , m = 0;
		long[] p = new long[max];
		int[] cntP = new int[max];
		
		if (n % 2 == 0) {
			long k = n;
			p[m] = 2;
			while (k % 2 == 0) {
				k /= 2;
				cntP[m]++;
			}
			m++;
		}
		
		long q = n;
		for (long i = 3; i * i <= n; i += 2) {
			if (q % i == 0) {
				p[m] = i;
				while (q % i == 0) {
					q /= i;
					cntP[m]++;
				}
				m++;
			}
		}
		
		if (m == 0) return n;
		
		//out(Arrays.toString(p));
		//out(Arrays.toString(cntP));
		
		long ret = 1;
		for (int i = 0; i < m; i++) {
			if (cntP[i] % 2 == 0) continue;
			ret *= p[i];
		}
		
		return ret;
	}
	
	public static void main (String[] args) throws IOException {
		
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		out(solve(Long.parseLong(br.readLine())));
	}
}
0