結果

問題 No.300 平方数
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 22:47:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 316 bytes
コンパイル時間 1,763 ms
コンパイル使用メモリ 74,416 KB
実行使用メモリ 55,872 KB
最終ジャッジ日時 2024-05-04 14:32:10
合計ジャッジ時間 6,162 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
46,672 KB
testcase_01 AC 111 ms
41,396 KB
testcase_02 AC 115 ms
41,788 KB
testcase_03 AC 110 ms
41,736 KB
testcase_04 AC 110 ms
41,452 KB
testcase_05 AC 121 ms
41,452 KB
testcase_06 AC 121 ms
41,692 KB
testcase_07 AC 124 ms
41,680 KB
testcase_08 WA -
testcase_09 AC 113 ms
41,376 KB
testcase_10 AC 114 ms
41,612 KB
testcase_11 AC 109 ms
41,468 KB
testcase_12 WA -
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
権限があれば一括ダウンロードができます

ソースコード

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