結果

問題 No.300 平方数
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 22:55:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 612 bytes
コンパイル時間 1,637 ms
コンパイル使用メモリ 74,396 KB
実行使用メモリ 54,984 KB
最終ジャッジ日時 2024-05-04 14:34:06
合計ジャッジ時間 7,944 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
52,828 KB
testcase_01 AC 108 ms
53,776 KB
testcase_02 AC 111 ms
53,692 KB
testcase_03 AC 96 ms
52,644 KB
testcase_04 AC 98 ms
52,704 KB
testcase_05 AC 99 ms
52,856 KB
testcase_06 AC 101 ms
52,672 KB
testcase_07 AC 116 ms
53,980 KB
testcase_08 AC 94 ms
52,644 KB
testcase_09 AC 110 ms
54,216 KB
testcase_10 AC 107 ms
53,628 KB
testcase_11 AC 108 ms
53,976 KB
testcase_12 AC 110 ms
54,356 KB
testcase_13 AC 106 ms
52,940 KB
testcase_14 AC 108 ms
53,804 KB
testcase_15 AC 114 ms
53,864 KB
testcase_16 AC 106 ms
52,748 KB
testcase_17 AC 96 ms
52,828 KB
testcase_18 AC 110 ms
53,940 KB
testcase_19 AC 114 ms
53,720 KB
testcase_20 AC 115 ms
54,436 KB
testcase_21 AC 126 ms
54,384 KB
testcase_22 AC 118 ms
54,176 KB
testcase_23 AC 115 ms
53,912 KB
testcase_24 AC 116 ms
54,184 KB
testcase_25 AC 105 ms
52,660 KB
testcase_26 AC 105 ms
52,828 KB
testcase_27 AC 116 ms
54,188 KB
testcase_28 AC 119 ms
54,092 KB
testcase_29 AC 108 ms
53,088 KB
testcase_30 AC 125 ms
54,212 KB
testcase_31 AC 119 ms
54,120 KB
testcase_32 AC 118 ms
54,076 KB
testcase_33 AC 111 ms
53,036 KB
testcase_34 AC 123 ms
54,044 KB
testcase_35 AC 109 ms
53,156 KB
testcase_36 AC 122 ms
54,356 KB
testcase_37 AC 112 ms
53,140 KB
testcase_38 AC 122 ms
54,088 KB
testcase_39 AC 122 ms
54,052 KB
testcase_40 AC 113 ms
53,728 KB
testcase_41 AC 119 ms
54,108 KB
testcase_42 AC 110 ms
54,984 KB
testcase_43 AC 111 ms
53,852 KB
testcase_44 AC 114 ms
54,140 KB
testcase_45 AC 117 ms
53,868 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