結果

問題 No.192 合成数
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-05-03 22:08:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 1,251 bytes
コンパイル時間 3,556 ms
コンパイル使用メモリ 78,292 KB
実行使用メモリ 41,796 KB
最終ジャッジ日時 2024-06-27 01:35:32
合計ジャッジ時間 7,954 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
39,912 KB
testcase_01 AC 129 ms
41,268 KB
testcase_02 AC 127 ms
41,252 KB
testcase_03 AC 116 ms
41,244 KB
testcase_04 AC 126 ms
41,580 KB
testcase_05 AC 126 ms
41,296 KB
testcase_06 AC 114 ms
40,340 KB
testcase_07 AC 126 ms
41,360 KB
testcase_08 AC 126 ms
41,428 KB
testcase_09 AC 127 ms
41,140 KB
testcase_10 AC 127 ms
41,264 KB
testcase_11 AC 126 ms
41,796 KB
testcase_12 AC 121 ms
41,364 KB
testcase_13 AC 127 ms
41,304 KB
testcase_14 AC 113 ms
40,112 KB
testcase_15 AC 115 ms
39,960 KB
testcase_16 AC 113 ms
40,220 KB
testcase_17 AC 130 ms
41,432 KB
testcase_18 AC 118 ms
41,076 KB
testcase_19 AC 117 ms
41,112 KB
testcase_20 AC 128 ms
41,228 KB
testcase_21 AC 127 ms
41,044 KB
testcase_22 AC 129 ms
41,612 KB
testcase_23 AC 127 ms
41,332 KB
testcase_24 AC 128 ms
41,112 KB
testcase_25 AC 129 ms
41,144 KB
testcase_26 AC 116 ms
40,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.192 合成数

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No0192 {
    
    static final Scanner in = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        boolean[] isPrime = sieveOfEratosthenes(2000);
        int n = in.nextInt();
        for (int i=n-100; i<=n+100; i++) {
            if (!isPrime[i] && i != 1) {
                out.println(i);
                return;
            }
        }
    }

    static boolean[] sieveOfEratosthenes(int n) {
        boolean[] isPrime = new boolean[n];
        Arrays.fill(isPrime,true);
        isPrime[0] = isPrime[1] = false;
        for (int i=2; i<n; i++) {
            if (isPrime[i]) {
                for (int j=i+i; j<n; j+=i) isPrime[j] = false;
            }
        }
        return isPrime;
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        in.close();
        out.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0