結果

問題 No.300 平方数
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-09 04:03:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 71 ms / 1,000 ms
コード長 1,038 bytes
コンパイル時間 3,579 ms
コンパイル使用メモリ 77,140 KB
実行使用メモリ 37,932 KB
最終ジャッジ日時 2024-10-09 06:12:48
合計ジャッジ時間 7,644 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,536 KB
testcase_01 AC 52 ms
36,652 KB
testcase_02 AC 52 ms
37,056 KB
testcase_03 AC 52 ms
36,676 KB
testcase_04 AC 51 ms
36,720 KB
testcase_05 AC 53 ms
36,972 KB
testcase_06 AC 52 ms
36,556 KB
testcase_07 AC 52 ms
37,132 KB
testcase_08 AC 53 ms
37,032 KB
testcase_09 AC 53 ms
36,864 KB
testcase_10 AC 53 ms
36,796 KB
testcase_11 AC 53 ms
36,784 KB
testcase_12 AC 52 ms
36,556 KB
testcase_13 AC 71 ms
37,752 KB
testcase_14 AC 52 ms
36,932 KB
testcase_15 AC 51 ms
36,904 KB
testcase_16 AC 54 ms
36,924 KB
testcase_17 AC 53 ms
36,540 KB
testcase_18 AC 52 ms
36,992 KB
testcase_19 AC 51 ms
36,924 KB
testcase_20 AC 54 ms
36,556 KB
testcase_21 AC 52 ms
36,556 KB
testcase_22 AC 53 ms
36,864 KB
testcase_23 AC 54 ms
36,956 KB
testcase_24 AC 56 ms
36,956 KB
testcase_25 AC 68 ms
37,932 KB
testcase_26 AC 59 ms
37,056 KB
testcase_27 AC 56 ms
36,540 KB
testcase_28 AC 69 ms
37,372 KB
testcase_29 AC 66 ms
37,104 KB
testcase_30 AC 53 ms
37,116 KB
testcase_31 AC 53 ms
36,904 KB
testcase_32 AC 53 ms
37,056 KB
testcase_33 AC 59 ms
37,120 KB
testcase_34 AC 71 ms
37,632 KB
testcase_35 AC 68 ms
37,248 KB
testcase_36 AC 58 ms
36,824 KB
testcase_37 AC 58 ms
36,884 KB
testcase_38 AC 54 ms
37,068 KB
testcase_39 AC 54 ms
36,972 KB
testcase_40 AC 53 ms
37,056 KB
testcase_41 AC 57 ms
36,904 KB
testcase_42 AC 52 ms
36,496 KB
testcase_43 AC 54 ms
36,556 KB
testcase_44 AC 54 ms
37,064 KB
testcase_45 AC 54 ms
37,064 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;

    long[] factor = new long[10];
    int[] count = new int[10];

    int index = 0;

    while(n != 1 && n % 2 == 0){
      if(n % 2 == 0){
        factor[index] = 2;
        while (n % 2 == 0){
          count[index]++;
          n /= 2;
        }
        index++;
      }
    }


    for (long i = 3; i * i <= n; i += 2){
      if (n % i == 0){
        factor[index] = i;
        while(n % i == 0){
          count[index]++;
          n /= i;
        }
        index++;
      }
    }


    if (index == 0){
      System.out.println(nd);
      return;
    }

    long answer = 1;
    for (int i = 0; i < index; i ++){
      if(count[i] % 2 == 1){
        answer *= factor[i];
      }
    }
    System.out.println(answer * n);
  }
}
0