結果

問題 No.300 平方数
ユーザー kano_townkano_town
提出日時 2015-11-14 11:20:34
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 376 bytes
コンパイル時間 3,864 ms
コンパイル使用メモリ 74,376 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-09-13 16:43:29
合計ジャッジ時間 11,285 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
41,292 KB
testcase_01 AC 145 ms
41,228 KB
testcase_02 AC 145 ms
41,544 KB
testcase_03 AC 132 ms
40,488 KB
testcase_04 AC 146 ms
41,360 KB
testcase_05 AC 146 ms
41,528 KB
testcase_06 AC 147 ms
41,704 KB
testcase_07 AC 145 ms
41,332 KB
testcase_08 WA -
testcase_09 AC 132 ms
40,356 KB
testcase_10 AC 146 ms
41,448 KB
testcase_11 AC 145 ms
41,196 KB
testcase_12 WA -
testcase_13 AC 145 ms
41,292 KB
testcase_14 WA -
testcase_15 AC 144 ms
41,100 KB
testcase_16 AC 131 ms
40,232 KB
testcase_17 AC 143 ms
41,400 KB
testcase_18 AC 131 ms
40,056 KB
testcase_19 AC 144 ms
41,612 KB
testcase_20 AC 143 ms
41,496 KB
testcase_21 AC 145 ms
41,700 KB
testcase_22 AC 147 ms
41,192 KB
testcase_23 WA -
testcase_24 AC 143 ms
41,516 KB
testcase_25 AC 130 ms
40,232 KB
testcase_26 AC 131 ms
40,520 KB
testcase_27 AC 147 ms
41,560 KB
testcase_28 AC 147 ms
41,436 KB
testcase_29 AC 144 ms
41,544 KB
testcase_30 AC 146 ms
41,180 KB
testcase_31 AC 146 ms
41,304 KB
testcase_32 AC 145 ms
41,452 KB
testcase_33 AC 145 ms
41,276 KB
testcase_34 AC 143 ms
41,264 KB
testcase_35 AC 143 ms
41,140 KB
testcase_36 AC 144 ms
41,628 KB
testcase_37 AC 143 ms
41,392 KB
testcase_38 WA -
testcase_39 AC 144 ms
41,512 KB
testcase_40 AC 143 ms
41,336 KB
testcase_41 AC 143 ms
41,396 KB
testcase_42 AC 145 ms
41,488 KB
testcase_43 WA -
testcase_44 AC 132 ms
40,680 KB
testcase_45 AC 141 ms
41,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder300 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int cnt;
        long x = sc.nextLong(), y = 1, i;

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

        System.out.println(x);
    }
}
0