結果

問題 No.300 平方数
ユーザー tsunabittsunabit
提出日時 2020-03-26 14:56:02
言語 Java
(openjdk 23)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 530 bytes
コンパイル時間 3,789 ms
コンパイル使用メモリ 75,880 KB
実行使用メモリ 54,656 KB
最終ジャッジ日時 2025-01-02 01:49:21
合計ジャッジ時間 10,714 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,240 KB
testcase_01 AC 108 ms
54,436 KB
testcase_02 AC 108 ms
54,380 KB
testcase_03 AC 110 ms
54,524 KB
testcase_04 AC 108 ms
54,328 KB
testcase_05 AC 116 ms
54,336 KB
testcase_06 AC 119 ms
54,316 KB
testcase_07 AC 107 ms
54,248 KB
testcase_08 AC 105 ms
54,272 KB
testcase_09 AC 104 ms
54,296 KB
testcase_10 AC 108 ms
54,224 KB
testcase_11 AC 112 ms
54,348 KB
testcase_12 AC 108 ms
54,272 KB
testcase_13 AC 126 ms
54,404 KB
testcase_14 AC 118 ms
54,160 KB
testcase_15 AC 115 ms
54,408 KB
testcase_16 AC 126 ms
54,568 KB
testcase_17 AC 116 ms
54,444 KB
testcase_18 AC 107 ms
54,364 KB
testcase_19 AC 107 ms
54,368 KB
testcase_20 AC 130 ms
54,348 KB
testcase_21 AC 112 ms
54,476 KB
testcase_22 AC 112 ms
54,428 KB
testcase_23 AC 111 ms
54,248 KB
testcase_24 AC 112 ms
54,480 KB
testcase_25 AC 120 ms
54,436 KB
testcase_26 AC 118 ms
54,288 KB
testcase_27 AC 113 ms
54,448 KB
testcase_28 AC 117 ms
54,324 KB
testcase_29 AC 120 ms
54,480 KB
testcase_30 AC 124 ms
54,620 KB
testcase_31 AC 112 ms
54,348 KB
testcase_32 AC 118 ms
54,328 KB
testcase_33 AC 119 ms
54,396 KB
testcase_34 AC 122 ms
54,596 KB
testcase_35 AC 116 ms
54,544 KB
testcase_36 AC 123 ms
54,312 KB
testcase_37 AC 121 ms
54,496 KB
testcase_38 AC 110 ms
54,368 KB
testcase_39 AC 115 ms
54,536 KB
testcase_40 AC 121 ms
54,596 KB
testcase_41 AC 114 ms
54,316 KB
testcase_42 AC 113 ms
54,392 KB
testcase_43 AC 116 ms
54,404 KB
testcase_44 AC 132 ms
54,656 KB
testcase_45 AC 124 ms
54,292 KB
権限があれば一括ダウンロードができます

ソースコード

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 c = 0;
//		int y = 1;
		long i = 2;
		while(x >= (i*i)) {
//		for(int i = 2; i <= x; ) {
//			System.out.println("i = " + i + ", x = " + x);
			if(x%(i*i) == 0) {
				x /= i*i; 
//				c += 1;
			}else {
//				if(c%2 != 0) {
//					y *= i;
//				}
//				c = 0;
				i += 1;
			}
		}
//		if(c%2 != 0) y *= i;
		System.out.println(x);
	}
}
0