結果

問題 No.300 平方数
ユーザー tsunabittsunabit
提出日時 2020-03-26 14:56:42
言語 Java
(openjdk 23)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 321 bytes
コンパイル時間 4,353 ms
コンパイル使用メモリ 76,552 KB
実行使用メモリ 54,660 KB
最終ジャッジ日時 2025-01-02 01:49:44
合計ジャッジ時間 9,653 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
54,140 KB
testcase_01 AC 111 ms
54,376 KB
testcase_02 AC 111 ms
54,464 KB
testcase_03 AC 108 ms
54,476 KB
testcase_04 AC 107 ms
54,440 KB
testcase_05 AC 107 ms
54,404 KB
testcase_06 AC 107 ms
54,372 KB
testcase_07 AC 107 ms
54,404 KB
testcase_08 AC 112 ms
54,280 KB
testcase_09 AC 106 ms
54,400 KB
testcase_10 AC 104 ms
54,440 KB
testcase_11 AC 103 ms
54,396 KB
testcase_12 AC 107 ms
54,464 KB
testcase_13 AC 122 ms
54,548 KB
testcase_14 AC 111 ms
54,404 KB
testcase_15 AC 107 ms
54,316 KB
testcase_16 AC 117 ms
54,264 KB
testcase_17 AC 108 ms
54,260 KB
testcase_18 AC 103 ms
54,228 KB
testcase_19 AC 107 ms
54,256 KB
testcase_20 AC 112 ms
54,396 KB
testcase_21 AC 114 ms
54,320 KB
testcase_22 AC 108 ms
54,444 KB
testcase_23 AC 130 ms
54,508 KB
testcase_24 AC 116 ms
54,420 KB
testcase_25 AC 121 ms
54,384 KB
testcase_26 AC 113 ms
54,372 KB
testcase_27 AC 121 ms
54,400 KB
testcase_28 AC 132 ms
54,392 KB
testcase_29 AC 130 ms
54,576 KB
testcase_30 AC 131 ms
54,444 KB
testcase_31 AC 106 ms
54,352 KB
testcase_32 AC 122 ms
54,512 KB
testcase_33 AC 112 ms
54,332 KB
testcase_34 AC 127 ms
54,540 KB
testcase_35 AC 134 ms
54,340 KB
testcase_36 AC 132 ms
54,460 KB
testcase_37 AC 120 ms
54,404 KB
testcase_38 AC 108 ms
54,140 KB
testcase_39 AC 121 ms
54,272 KB
testcase_40 AC 118 ms
54,256 KB
testcase_41 AC 114 ms
54,660 KB
testcase_42 AC 122 ms
54,532 KB
testcase_43 AC 131 ms
54,312 KB
testcase_44 AC 136 ms
54,532 KB
testcase_45 AC 129 ms
54,532 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();
		long i = 2;
		while(x >= (i*i)) {
			if(x%(i*i) == 0) {
				x /= i*i; 
			}else {
				i += 1;
			}
		}
		System.out.println(x);
	}
}
0