結果

問題 No.300 平方数
ユーザー tsunabittsunabit
提出日時 2020-03-26 13:02:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 480 bytes
コンパイル時間 2,866 ms
コンパイル使用メモリ 74,648 KB
実行使用メモリ 46,456 KB
最終ジャッジ日時 2024-06-10 12:21:08
合計ジャッジ時間 8,048 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
46,344 KB
testcase_01 AC 100 ms
40,332 KB
testcase_02 AC 108 ms
41,244 KB
testcase_03 AC 95 ms
39,856 KB
testcase_04 AC 100 ms
40,168 KB
testcase_05 AC 98 ms
40,008 KB
testcase_06 AC 104 ms
40,744 KB
testcase_07 AC 109 ms
41,304 KB
testcase_08 AC 110 ms
41,212 KB
testcase_09 AC 96 ms
39,492 KB
testcase_10 AC 109 ms
40,820 KB
testcase_11 AC 108 ms
41,340 KB
testcase_12 AC 122 ms
41,600 KB
testcase_13 WA -
testcase_14 AC 108 ms
41,196 KB
testcase_15 AC 106 ms
40,992 KB
testcase_16 WA -
testcase_17 AC 99 ms
40,120 KB
testcase_18 AC 109 ms
41,256 KB
testcase_19 AC 114 ms
41,188 KB
testcase_20 TLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
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.util.*;
import java.io.*;
import java.math.*;

public class No300 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long x = sc.nextLong();
		int s = 2;
		int c = 0, y = 1;
		while(x > 1) {
//			System.out.println("x = " + x + ", c = " + c + ", y = " + y);
			if(x%s == 0) {
				c += 1;
				x = x/s;
			}else {
				if(c%2 != 0) {
					y *= s;
				}
				s += 1;
				c = 0;
			}
		}
		if(c%2 != 0) y *= s;
		System.out.println(y);
	}
}
0