結果

問題 No.300 平方数
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 22:55:19
言語 Java
(openjdk 23)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 612 bytes
コンパイル時間 2,038 ms
コンパイル使用メモリ 74,268 KB
実行使用メモリ 54,576 KB
最終ジャッジ日時 2024-11-26 02:38:25
合計ジャッジ時間 8,603 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
52,668 KB
testcase_01 AC 120 ms
53,752 KB
testcase_02 AC 116 ms
53,416 KB
testcase_03 AC 115 ms
53,672 KB
testcase_04 AC 110 ms
53,200 KB
testcase_05 AC 116 ms
54,092 KB
testcase_06 AC 117 ms
53,708 KB
testcase_07 AC 112 ms
53,392 KB
testcase_08 AC 123 ms
53,956 KB
testcase_09 AC 109 ms
54,104 KB
testcase_10 AC 104 ms
52,652 KB
testcase_11 AC 118 ms
53,956 KB
testcase_12 AC 114 ms
53,836 KB
testcase_13 AC 113 ms
53,068 KB
testcase_14 AC 104 ms
52,876 KB
testcase_15 AC 112 ms
52,996 KB
testcase_16 AC 125 ms
54,008 KB
testcase_17 AC 107 ms
52,976 KB
testcase_18 AC 121 ms
54,076 KB
testcase_19 AC 121 ms
53,868 KB
testcase_20 AC 110 ms
54,576 KB
testcase_21 AC 121 ms
54,152 KB
testcase_22 AC 123 ms
54,180 KB
testcase_23 AC 128 ms
54,192 KB
testcase_24 AC 115 ms
52,712 KB
testcase_25 AC 121 ms
53,624 KB
testcase_26 AC 127 ms
54,204 KB
testcase_27 AC 122 ms
53,868 KB
testcase_28 AC 114 ms
52,884 KB
testcase_29 AC 125 ms
53,996 KB
testcase_30 AC 120 ms
53,480 KB
testcase_31 AC 133 ms
53,928 KB
testcase_32 AC 114 ms
53,096 KB
testcase_33 AC 113 ms
52,760 KB
testcase_34 AC 118 ms
53,044 KB
testcase_35 AC 125 ms
53,788 KB
testcase_36 AC 124 ms
54,196 KB
testcase_37 AC 121 ms
53,792 KB
testcase_38 AC 124 ms
54,204 KB
testcase_39 AC 134 ms
54,060 KB
testcase_40 AC 134 ms
53,732 KB
testcase_41 AC 131 ms
53,748 KB
testcase_42 AC 113 ms
52,712 KB
testcase_43 AC 111 ms
52,648 KB
testcase_44 AC 131 ms
53,740 KB
testcase_45 AC 122 ms
53,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long X = sc.nextLong();
        long Y = 1L;
        int c=0;
        while(X%2==0){
            X/=2;
            c++;
        }
        if(c%2==1){
            Y*=2;
        }
        long A = (long)Math.sqrt(X);
        for(long i=3; i<=A; i+=2){
            c=0;
            while(X%i==0){
                X/=i;
                c++;
            }
            if(c%2==1){
                Y*=i;
            }
        }
        Y*=X;
        System.out.println(Y);
    }
}
0