結果

問題 No.300 平方数
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-09 03:43:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,076 bytes
コンパイル時間 4,823 ms
コンパイル使用メモリ 78,952 KB
実行使用メモリ 52,252 KB
最終ジャッジ日時 2024-10-09 06:12:38
合計ジャッジ時間 7,539 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 52 ms
37,072 KB
testcase_02 AC 52 ms
37,212 KB
testcase_03 AC 53 ms
37,164 KB
testcase_04 AC 53 ms
36,896 KB
testcase_05 AC 53 ms
36,644 KB
testcase_06 AC 53 ms
37,236 KB
testcase_07 AC 53 ms
37,048 KB
testcase_08 WA -
testcase_09 AC 52 ms
37,188 KB
testcase_10 WA -
testcase_11 AC 52 ms
36,776 KB
testcase_12 WA -
testcase_13 AC 72 ms
37,928 KB
testcase_14 AC 52 ms
36,972 KB
testcase_15 WA -
testcase_16 AC 52 ms
36,624 KB
testcase_17 WA -
testcase_18 AC 53 ms
36,912 KB
testcase_19 AC 53 ms
36,684 KB
testcase_20 AC 53 ms
37,076 KB
testcase_21 AC 52 ms
37,180 KB
testcase_22 AC 53 ms
37,028 KB
testcase_23 AC 56 ms
36,812 KB
testcase_24 WA -
testcase_25 AC 68 ms
38,284 KB
testcase_26 AC 58 ms
36,928 KB
testcase_27 AC 56 ms
37,048 KB
testcase_28 AC 68 ms
37,732 KB
testcase_29 AC 69 ms
37,332 KB
testcase_30 AC 54 ms
37,048 KB
testcase_31 AC 53 ms
36,956 KB
testcase_32 AC 54 ms
36,884 KB
testcase_33 AC 61 ms
37,084 KB
testcase_34 AC 69 ms
38,380 KB
testcase_35 AC 77 ms
37,432 KB
testcase_36 AC 57 ms
36,960 KB
testcase_37 AC 58 ms
37,384 KB
testcase_38 AC 53 ms
37,228 KB
testcase_39 AC 54 ms
37,116 KB
testcase_40 AC 53 ms
36,936 KB
testcase_41 AC 57 ms
36,956 KB
testcase_42 AC 52 ms
36,956 KB
testcase_43 AC 53 ms
37,208 KB
testcase_44 AC 52 ms
36,896 KB
testcase_45 AC 53 ms
37,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Exercise68{
  public static void main (String[] args) throws IOException{

    BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
    String nStr = new String(in.readLine());

    long nd = Long.parseLong(nStr);
    long n = nd;

    HashMap<Long,Integer> factor = new HashMap<Long,Integer>();

    while(n != 1 && n % 2 == 0){
      if(factor.containsKey(2)){
        factor.put((long)2, factor.get(2) + 1);
      }else{
        factor.put((long)2, 1);
      }
      n /= 2;
    }


    for (long i = 3; i * i <= n; i += 2){
      while(n % i == 0){
        if(factor.containsKey(i)){
          factor.put(i, factor.get(i) + 1);
        }else{
          factor.put(i, 1);
        }
        n /= i;
      }
    }

    if (factor.size() == 0){
      System.out.println(nd);
      return;
    }
    long answer = 1;
    for (Map.Entry<Long,Integer> entry : factor.entrySet()){
      if(entry.getValue() % 2 == 1){
        answer *= entry.getKey();
      }
    }
    System.out.println(answer * n);
  }
}
0