結果

問題 No.300 平方数
ユーザー tsunabittsunabit
提出日時 2020-03-26 14:56:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 1,000 ms
コード長 530 bytes
コンパイル時間 2,906 ms
コンパイル使用メモリ 74,104 KB
実行使用メモリ 42,080 KB
最終ジャッジ日時 2024-06-10 12:39:25
合計ジャッジ時間 9,784 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,172 KB
testcase_01 AC 106 ms
41,224 KB
testcase_02 AC 106 ms
41,200 KB
testcase_03 AC 103 ms
40,968 KB
testcase_04 AC 111 ms
41,192 KB
testcase_05 AC 117 ms
41,400 KB
testcase_06 AC 99 ms
40,188 KB
testcase_07 AC 96 ms
39,660 KB
testcase_08 AC 109 ms
41,060 KB
testcase_09 AC 99 ms
40,044 KB
testcase_10 AC 99 ms
40,340 KB
testcase_11 AC 98 ms
40,028 KB
testcase_12 AC 109 ms
41,156 KB
testcase_13 AC 118 ms
39,984 KB
testcase_14 AC 105 ms
40,108 KB
testcase_15 AC 108 ms
41,076 KB
testcase_16 AC 120 ms
41,024 KB
testcase_17 AC 106 ms
41,124 KB
testcase_18 AC 108 ms
41,208 KB
testcase_19 AC 98 ms
39,936 KB
testcase_20 AC 101 ms
40,012 KB
testcase_21 AC 122 ms
41,300 KB
testcase_22 AC 109 ms
40,180 KB
testcase_23 AC 114 ms
41,068 KB
testcase_24 AC 123 ms
41,144 KB
testcase_25 AC 122 ms
41,428 KB
testcase_26 AC 105 ms
40,004 KB
testcase_27 AC 120 ms
41,132 KB
testcase_28 AC 117 ms
40,380 KB
testcase_29 AC 109 ms
40,176 KB
testcase_30 AC 110 ms
39,988 KB
testcase_31 AC 113 ms
40,856 KB
testcase_32 AC 124 ms
41,084 KB
testcase_33 AC 113 ms
41,028 KB
testcase_34 AC 112 ms
39,976 KB
testcase_35 AC 108 ms
40,076 KB
testcase_36 AC 147 ms
41,144 KB
testcase_37 AC 143 ms
41,452 KB
testcase_38 AC 138 ms
41,940 KB
testcase_39 AC 148 ms
42,080 KB
testcase_40 AC 125 ms
41,256 KB
testcase_41 AC 132 ms
41,372 KB
testcase_42 AC 121 ms
40,812 KB
testcase_43 AC 123 ms
41,392 KB
testcase_44 AC 127 ms
40,516 KB
testcase_45 AC 112 ms
40,328 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