結果

問題 No.300 平方数
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 22:47:08
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 316 bytes
コンパイル時間 2,646 ms
コンパイル使用メモリ 74,624 KB
実行使用メモリ 83,692 KB
最終ジャッジ日時 2024-11-26 02:36:16
合計ジャッジ時間 62,553 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
46,500 KB
testcase_01 AC 106 ms
83,268 KB
testcase_02 AC 119 ms
46,556 KB
testcase_03 AC 106 ms
83,380 KB
testcase_04 AC 103 ms
46,304 KB
testcase_05 AC 116 ms
83,056 KB
testcase_06 AC 128 ms
46,608 KB
testcase_07 AC 118 ms
82,876 KB
testcase_08 WA -
testcase_09 AC 100 ms
82,988 KB
testcase_10 AC 112 ms
46,380 KB
testcase_11 AC 114 ms
83,468 KB
testcase_12 WA -
testcase_13 TLE -
testcase_14 WA -
testcase_15 AC 123 ms
82,792 KB
testcase_16 TLE -
testcase_17 AC 113 ms
83,008 KB
testcase_18 AC 117 ms
46,680 KB
testcase_19 AC 110 ms
83,692 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long X = sc.nextLong();
        for(long i=2; i<X; i++){
            if( X%(i*i)==0 ){
                X=X/(i*i);
            }
        }
        System.out.println(X);
    }
}
0