結果

問題 No.300 平方数
ユーザー tsunabittsunabit
提出日時 2020-03-26 14:56:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 1,000 ms
コード長 321 bytes
コンパイル時間 3,366 ms
コンパイル使用メモリ 73,988 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-06-10 12:39:37
合計ジャッジ時間 10,051 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
54,344 KB
testcase_01 AC 103 ms
52,856 KB
testcase_02 AC 110 ms
53,796 KB
testcase_03 AC 117 ms
54,100 KB
testcase_04 AC 121 ms
53,928 KB
testcase_05 AC 120 ms
53,840 KB
testcase_06 AC 123 ms
54,152 KB
testcase_07 AC 117 ms
53,908 KB
testcase_08 AC 104 ms
52,960 KB
testcase_09 AC 108 ms
53,436 KB
testcase_10 AC 117 ms
54,084 KB
testcase_11 AC 128 ms
53,920 KB
testcase_12 AC 122 ms
53,776 KB
testcase_13 AC 144 ms
53,936 KB
testcase_14 AC 127 ms
53,828 KB
testcase_15 AC 126 ms
53,860 KB
testcase_16 AC 125 ms
53,716 KB
testcase_17 AC 121 ms
53,792 KB
testcase_18 AC 115 ms
52,812 KB
testcase_19 AC 118 ms
53,928 KB
testcase_20 AC 124 ms
53,676 KB
testcase_21 AC 130 ms
54,184 KB
testcase_22 AC 120 ms
52,976 KB
testcase_23 AC 127 ms
53,880 KB
testcase_24 AC 125 ms
53,792 KB
testcase_25 AC 134 ms
54,112 KB
testcase_26 AC 134 ms
54,140 KB
testcase_27 AC 118 ms
53,784 KB
testcase_28 AC 126 ms
53,820 KB
testcase_29 AC 121 ms
53,028 KB
testcase_30 AC 130 ms
53,932 KB
testcase_31 AC 116 ms
54,076 KB
testcase_32 AC 126 ms
54,128 KB
testcase_33 AC 117 ms
53,984 KB
testcase_34 AC 124 ms
54,092 KB
testcase_35 AC 127 ms
54,044 KB
testcase_36 AC 119 ms
53,076 KB
testcase_37 AC 108 ms
52,732 KB
testcase_38 AC 115 ms
53,984 KB
testcase_39 AC 125 ms
54,148 KB
testcase_40 AC 125 ms
54,084 KB
testcase_41 AC 124 ms
53,896 KB
testcase_42 AC 135 ms
53,700 KB
testcase_43 AC 111 ms
52,696 KB
testcase_44 AC 109 ms
52,940 KB
testcase_45 AC 118 ms
54,108 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