結果

問題 No.300 平方数
ユーザー scachescache
提出日時 2015-11-13 22:27:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 613 bytes
コンパイル時間 3,324 ms
コンパイル使用メモリ 74,608 KB
実行使用メモリ 54,560 KB
最終ジャッジ日時 2024-09-13 14:38:46
合計ジャッジ時間 12,670 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 170 ms
53,888 KB
testcase_01 AC 170 ms
53,984 KB
testcase_02 AC 173 ms
53,832 KB
testcase_03 AC 173 ms
54,096 KB
testcase_04 AC 173 ms
54,456 KB
testcase_05 AC 171 ms
54,184 KB
testcase_06 AC 173 ms
54,296 KB
testcase_07 AC 171 ms
54,092 KB
testcase_08 AC 174 ms
54,192 KB
testcase_09 AC 162 ms
52,920 KB
testcase_10 AC 174 ms
54,012 KB
testcase_11 AC 170 ms
54,124 KB
testcase_12 AC 173 ms
54,228 KB
testcase_13 AC 176 ms
54,284 KB
testcase_14 AC 176 ms
54,256 KB
testcase_15 AC 173 ms
54,280 KB
testcase_16 AC 172 ms
54,072 KB
testcase_17 AC 170 ms
54,136 KB
testcase_18 AC 161 ms
53,184 KB
testcase_19 AC 173 ms
54,008 KB
testcase_20 WA -
testcase_21 AC 172 ms
54,356 KB
testcase_22 AC 160 ms
53,056 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 167 ms
54,048 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 171 ms
53,848 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

public class Main299 {
    public static void main(String[] args) {
        new Main299();
    }

    public Main299() {
        Scanner sc = new Scanner(System.in);
        long x = sc.nextLong();
        System.out.println(solve(x));
    }

    public long solve(long x) {
        long res = 1;
        for (long i = 2; i * i < (10e+12) + 1; i++) {
            int count = 0;
            while (x % i == 0) {
                x /= i;
                count++;
            }

            res *= count % 2 == 1 ? i : 1;
        }

        return res;

    }
}
0