結果

問題 No.312 置換処理
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-10 19:29:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 467 bytes
コンパイル時間 2,034 ms
コンパイル使用メモリ 74,804 KB
実行使用メモリ 54,276 KB
最終ジャッジ日時 2024-07-02 16:19:00
合計ジャッジ時間 9,960 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
54,088 KB
testcase_01 AC 144 ms
53,996 KB
testcase_02 AC 148 ms
53,768 KB
testcase_03 AC 147 ms
53,856 KB
testcase_04 AC 133 ms
53,852 KB
testcase_05 AC 146 ms
54,116 KB
testcase_06 AC 145 ms
53,880 KB
testcase_07 AC 147 ms
53,912 KB
testcase_08 AC 145 ms
53,908 KB
testcase_09 AC 140 ms
53,764 KB
testcase_10 AC 141 ms
53,932 KB
testcase_11 AC 143 ms
54,160 KB
testcase_12 AC 144 ms
53,992 KB
testcase_13 AC 146 ms
53,924 KB
testcase_14 AC 146 ms
53,952 KB
testcase_15 AC 142 ms
54,076 KB
testcase_16 AC 139 ms
53,920 KB
testcase_17 AC 143 ms
54,112 KB
testcase_18 AC 141 ms
54,152 KB
testcase_19 AC 145 ms
53,756 KB
testcase_20 AC 145 ms
53,800 KB
testcase_21 AC 152 ms
53,572 KB
testcase_22 AC 138 ms
53,832 KB
testcase_23 WA -
testcase_24 AC 132 ms
53,960 KB
testcase_25 AC 132 ms
53,972 KB
testcase_26 AC 130 ms
53,920 KB
testcase_27 AC 122 ms
52,860 KB
testcase_28 AC 135 ms
54,236 KB
testcase_29 AC 131 ms
54,120 KB
testcase_30 AC 133 ms
54,208 KB
testcase_31 AC 137 ms
53,688 KB
testcase_32 AC 134 ms
54,008 KB
testcase_33 AC 139 ms
54,096 KB
testcase_34 AC 140 ms
53,752 KB
testcase_35 AC 138 ms
54,020 KB
testcase_36 AC 133 ms
53,920 KB
testcase_37 AC 130 ms
54,176 KB
testcase_38 AC 131 ms
53,856 KB
testcase_39 AC 137 ms
54,276 KB
testcase_40 AC 131 ms
54,016 KB
testcase_41 AC 133 ms
53,984 KB
testcase_42 AC 129 ms
54,052 KB
testcase_43 AC 129 ms
53,964 KB
testcase_44 AC 127 ms
53,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long n = sc.nextLong();
    long ans = (long)Math.pow(10, 18);
    for(long i = 2; (i * i) <= n; i++) {
      if((n % i) == 0) {
        if(i == 2) {
          ans = Math.min(n / 2, ans);
        } else {
          ans = Math.min(ans, i);
        }
      }
    }
    if(ans == Math.pow(10, 18)) ans = n;
    System.out.println(ans);
  }
}
0