結果

問題 No.300 平方数
ユーザー crazybbb3crazybbb3
提出日時 2016-11-28 22:47:35
言語 Java
(openjdk 23)
結果
AC  
実行時間 67 ms / 1,000 ms
コード長 1,844 bytes
コンパイル時間 2,282 ms
コンパイル使用メモリ 76,928 KB
実行使用メモリ 37,568 KB
最終ジャッジ日時 2024-11-27 12:47:35
合計ジャッジ時間 5,885 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,624 KB
testcase_01 AC 48 ms
36,684 KB
testcase_02 AC 47 ms
36,840 KB
testcase_03 AC 48 ms
36,908 KB
testcase_04 AC 47 ms
36,664 KB
testcase_05 AC 48 ms
36,900 KB
testcase_06 AC 47 ms
37,040 KB
testcase_07 AC 46 ms
36,740 KB
testcase_08 AC 46 ms
36,752 KB
testcase_09 AC 47 ms
36,448 KB
testcase_10 AC 47 ms
36,496 KB
testcase_11 AC 47 ms
36,820 KB
testcase_12 AC 47 ms
36,764 KB
testcase_13 AC 67 ms
37,284 KB
testcase_14 AC 47 ms
36,912 KB
testcase_15 AC 48 ms
36,848 KB
testcase_16 AC 62 ms
37,300 KB
testcase_17 AC 48 ms
36,872 KB
testcase_18 AC 48 ms
36,696 KB
testcase_19 AC 46 ms
36,708 KB
testcase_20 AC 52 ms
36,840 KB
testcase_21 AC 61 ms
36,676 KB
testcase_22 AC 52 ms
36,856 KB
testcase_23 AC 55 ms
36,568 KB
testcase_24 AC 58 ms
36,816 KB
testcase_25 AC 67 ms
37,320 KB
testcase_26 AC 60 ms
37,272 KB
testcase_27 AC 55 ms
36,900 KB
testcase_28 AC 66 ms
37,540 KB
testcase_29 AC 67 ms
37,568 KB
testcase_30 AC 67 ms
37,372 KB
testcase_31 AC 50 ms
36,564 KB
testcase_32 AC 63 ms
37,416 KB
testcase_33 AC 58 ms
36,644 KB
testcase_34 AC 67 ms
37,364 KB
testcase_35 AC 63 ms
37,464 KB
testcase_36 AC 62 ms
37,224 KB
testcase_37 AC 63 ms
37,476 KB
testcase_38 AC 50 ms
36,708 KB
testcase_39 AC 62 ms
37,320 KB
testcase_40 AC 62 ms
37,488 KB
testcase_41 AC 59 ms
36,880 KB
testcase_42 AC 53 ms
36,720 KB
testcase_43 AC 57 ms
36,704 KB
testcase_44 AC 67 ms
37,388 KB
testcase_45 AC 62 ms
37,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.StringTokenizer;

public class Main {

    static BufferedReader in;
    static PrintWriter out;
    static StringTokenizer tok;

    void solve() throws IOException {
        long x = nl();

        for (long i = 2; i * i <= x; i++) {
            if (x % i == 0) {
                while (x % (i * i) == 0) {
                    x /= i * i;
                }
            }
        }

        out.println(x);
    }

    String ns() throws IOException {
        while (!tok.hasMoreTokens()) {
            tok = new StringTokenizer(in.readLine(), " ");
        }
        return tok.nextToken();
    }

    int ni() throws IOException {
        return Integer.parseInt(ns());
    }

    long nl() throws IOException {
        return Long.parseLong(ns());
    }

    double nd() throws IOException {
        return Double.parseDouble(ns());
    }

    String[] nsa(int n) throws IOException {
        String[] res = new String[n];
        for (int i = 0; i < n; i++) {
            res[i] = ns();
        }
        return res;
    }

    int[] nia(int n) throws IOException {
        int[] res = new int[n];
        for (int i = 0; i < n; i++) {
            res[i] = ni();
        }
        return res;
    }

    long[] nla(int n) throws IOException {
        long[] res = new long[n];
        for (int i = 0; i < n; i++) {
            res[i] = nl();
        }
        return res;
    }

    public static void main(String[] args) throws IOException {
        in = new BufferedReader(new InputStreamReader(System.in));
        out = new PrintWriter(System.out);
        tok = new StringTokenizer("");
        Main main = new Main();
        main.solve();
        out.close();
    }
}
0