結果

問題 No.312 置換処理
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-10 01:38:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 746 bytes
コンパイル時間 3,671 ms
コンパイル使用メモリ 74,764 KB
実行使用メモリ 37,748 KB
最終ジャッジ日時 2024-11-15 12:07:42
合計ジャッジ時間 7,429 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,884 KB
testcase_01 AC 72 ms
37,516 KB
testcase_02 AC 76 ms
37,748 KB
testcase_03 AC 76 ms
37,584 KB
testcase_04 AC 53 ms
37,068 KB
testcase_05 AC 54 ms
36,992 KB
testcase_06 AC 54 ms
37,024 KB
testcase_07 AC 67 ms
37,720 KB
testcase_08 AC 56 ms
36,928 KB
testcase_09 AC 57 ms
36,488 KB
testcase_10 AC 55 ms
36,856 KB
testcase_11 AC 58 ms
36,932 KB
testcase_12 AC 54 ms
36,920 KB
testcase_13 AC 53 ms
36,992 KB
testcase_14 AC 54 ms
36,928 KB
testcase_15 AC 55 ms
36,752 KB
testcase_16 AC 55 ms
36,508 KB
testcase_17 AC 56 ms
37,012 KB
testcase_18 AC 54 ms
36,992 KB
testcase_19 AC 53 ms
36,864 KB
testcase_20 AC 56 ms
36,524 KB
testcase_21 AC 55 ms
36,964 KB
testcase_22 AC 54 ms
36,836 KB
testcase_23 AC 54 ms
36,836 KB
testcase_24 AC 53 ms
36,988 KB
testcase_25 AC 53 ms
36,952 KB
testcase_26 AC 53 ms
36,816 KB
testcase_27 AC 54 ms
37,024 KB
testcase_28 AC 54 ms
36,944 KB
testcase_29 AC 53 ms
37,072 KB
testcase_30 AC 59 ms
37,064 KB
testcase_31 AC 58 ms
37,060 KB
testcase_32 AC 58 ms
36,592 KB
testcase_33 AC 66 ms
37,456 KB
testcase_34 AC 77 ms
37,444 KB
testcase_35 AC 54 ms
36,840 KB
testcase_36 AC 53 ms
36,960 KB
testcase_37 AC 53 ms
36,812 KB
testcase_38 AC 52 ms
37,084 KB
testcase_39 AC 53 ms
36,836 KB
testcase_40 AC 53 ms
36,924 KB
testcase_41 AC 52 ms
37,200 KB
testcase_42 AC 53 ms
37,060 KB
testcase_43 AC 53 ms
37,072 KB
testcase_44 AC 53 ms
37,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Exercise75{
  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[20];
    int count = 0;



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

    if (factor[0] > 2){
      System.out.println(factor[0]);
    }else{
      if(n % 2 == 0 && n / 2 != 2){
        System.out.println(n / 2);
      }else{
        System.out.println(n);
      }
    }
  }
}
0