結果

問題 No.312 置換処理
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-10 01:21:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 574 bytes
コンパイル時間 3,717 ms
コンパイル使用メモリ 74,732 KB
実行使用メモリ 52,308 KB
最終ジャッジ日時 2024-10-09 09:16:06
合計ジャッジ時間 7,184 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,984 KB
testcase_01 AC 62 ms
36,808 KB
testcase_02 AC 67 ms
37,828 KB
testcase_03 AC 72 ms
50,948 KB
testcase_04 AC 59 ms
48,212 KB
testcase_05 AC 50 ms
36,872 KB
testcase_06 AC 51 ms
36,808 KB
testcase_07 AC 55 ms
37,084 KB
testcase_08 AC 51 ms
37,156 KB
testcase_09 AC 49 ms
36,560 KB
testcase_10 AC 50 ms
36,820 KB
testcase_11 AC 51 ms
36,568 KB
testcase_12 AC 50 ms
36,568 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 49 ms
36,568 KB
testcase_23 AC 51 ms
37,124 KB
testcase_24 AC 51 ms
36,880 KB
testcase_25 AC 54 ms
37,020 KB
testcase_26 AC 50 ms
36,764 KB
testcase_27 WA -
testcase_28 AC 51 ms
36,776 KB
testcase_29 AC 49 ms
36,800 KB
testcase_30 AC 52 ms
37,004 KB
testcase_31 WA -
testcase_32 AC 50 ms
36,924 KB
testcase_33 AC 56 ms
36,864 KB
testcase_34 AC 56 ms
37,156 KB
testcase_35 AC 51 ms
36,944 KB
testcase_36 AC 50 ms
36,940 KB
testcase_37 AC 50 ms
37,072 KB
testcase_38 WA -
testcase_39 AC 52 ms
36,904 KB
testcase_40 AC 50 ms
37,052 KB
testcase_41 AC 50 ms
36,924 KB
testcase_42 AC 51 ms
36,904 KB
testcase_43 AC 51 ms
36,824 KB
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

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;

    while(n % 2 == 0){
      n /= 2;
    }

    if(n == 1){
      System.out.println(nd);
      return;
    }

    for (long i = 3; i * i <= n; i += 2){
      if(n % i == 0){
        System.out.println(i);
        return;
      }
    }

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