結果

問題 No.300 平方数
ユーザー samplelpmassamplelpmas
提出日時 2017-04-20 18:47:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 563 bytes
コンパイル時間 2,262 ms
コンパイル使用メモリ 74,236 KB
実行使用メモリ 54,016 KB
最終ジャッジ日時 2024-07-19 21:10:24
合計ジャッジ時間 8,575 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
51,292 KB
testcase_01 AC 106 ms
50,948 KB
testcase_02 AC 97 ms
50,676 KB
testcase_03 AC 118 ms
52,324 KB
testcase_04 AC 118 ms
52,236 KB
testcase_05 AC 118 ms
51,936 KB
testcase_06 AC 120 ms
52,084 KB
testcase_07 AC 122 ms
54,016 KB
testcase_08 AC 126 ms
51,916 KB
testcase_09 AC 115 ms
51,800 KB
testcase_10 AC 113 ms
51,792 KB
testcase_11 AC 113 ms
51,660 KB
testcase_12 AC 109 ms
50,732 KB
testcase_13 AC 126 ms
51,932 KB
testcase_14 AC 114 ms
51,840 KB
testcase_15 AC 103 ms
50,928 KB
testcase_16 AC 105 ms
50,936 KB
testcase_17 AC 104 ms
50,952 KB
testcase_18 AC 116 ms
52,448 KB
testcase_19 AC 121 ms
52,336 KB
testcase_20 AC 116 ms
52,112 KB
testcase_21 AC 106 ms
50,976 KB
testcase_22 AC 113 ms
51,552 KB
testcase_23 AC 120 ms
52,060 KB
testcase_24 AC 115 ms
51,044 KB
testcase_25 AC 131 ms
52,040 KB
testcase_26 AC 136 ms
52,128 KB
testcase_27 AC 120 ms
51,824 KB
testcase_28 AC 136 ms
52,184 KB
testcase_29 AC 137 ms
52,192 KB
testcase_30 AC 121 ms
52,340 KB
testcase_31 AC 135 ms
52,580 KB
testcase_32 AC 136 ms
52,008 KB
testcase_33 AC 111 ms
50,876 KB
testcase_34 AC 133 ms
52,212 KB
testcase_35 AC 122 ms
52,084 KB
testcase_36 AC 123 ms
51,840 KB
testcase_37 AC 123 ms
52,252 KB
testcase_38 AC 116 ms
51,804 KB
testcase_39 AC 102 ms
50,804 KB
testcase_40 AC 105 ms
50,644 KB
testcase_41 AC 112 ms
51,056 KB
testcase_42 AC 117 ms
52,232 KB
testcase_43 AC 113 ms
52,020 KB
testcase_44 AC 117 ms
52,064 KB
testcase_45 AC 113 ms
51,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        long x = sc.nextLong();

        long y = 1;

        for (long i = 2; (i * i) <= x; i++) {

            int factorCount = 0;

            while (x % i == 0) {

                x /= i;
                factorCount++;

            }

            if (factorCount % 2 != 0) {
                y *= i;
            }

        }

        if (x > 1) {
            y *= x;
        }

        System.out.println(y);

    }

}
0