結果

問題 No.300 平方数
ユーザー nanophoto12nanophoto12
提出日時 2015-11-15 16:32:41
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 793 bytes
コンパイル時間 2,199 ms
コンパイル使用メモリ 74,916 KB
実行使用メモリ 61,788 KB
最終ジャッジ日時 2024-09-13 15:06:00
合計ジャッジ時間 8,281 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
61,144 KB
testcase_01 AC 134 ms
54,048 KB
testcase_02 AC 133 ms
54,272 KB
testcase_03 AC 133 ms
54,012 KB
testcase_04 AC 134 ms
53,976 KB
testcase_05 AC 134 ms
54,116 KB
testcase_06 AC 133 ms
54,208 KB
testcase_07 AC 133 ms
54,024 KB
testcase_08 AC 130 ms
54,068 KB
testcase_09 AC 132 ms
54,252 KB
testcase_10 AC 131 ms
54,316 KB
testcase_11 AC 119 ms
53,008 KB
testcase_12 AC 131 ms
54,204 KB
testcase_13 AC 150 ms
54,144 KB
testcase_14 AC 130 ms
53,988 KB
testcase_15 AC 131 ms
54,224 KB
testcase_16 AC 132 ms
54,096 KB
testcase_17 AC 133 ms
54,044 KB
testcase_18 AC 133 ms
54,292 KB
testcase_19 AC 132 ms
54,416 KB
testcase_20 AC 134 ms
54,348 KB
testcase_21 AC 133 ms
53,984 KB
testcase_22 AC 133 ms
54,088 KB
testcase_23 TLE -
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 #

package com.company;

import java.util.HashSet;
import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        long n = scanner.nextLong();
        long a = n;
        HashSet<Integer> hashSet = new HashSet<Integer>();
        for(int i = 2;i*i<=a;i++)
        {
            int count = 0;
            while(a % i == 0)
            {
                a /= i;
                count++;
            }
            if(count % 2 == 1)
            {
                hashSet.add(i);
            }
        }
        long y = 1;
        for(Integer element : hashSet)
        {
            y *= (long)element;
        }
        if(a != 1)
        {
            y*=a;
        }
        System.out.println(y);
    }
}
0