結果

問題 No.192 合成数
ユーザー fal_rndfal_rnd
提出日時 2017-04-03 19:05:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 911 bytes
コンパイル時間 2,071 ms
コンパイル使用メモリ 77,448 KB
実行使用メモリ 54,532 KB
最終ジャッジ日時 2024-06-27 02:10:16
合計ジャッジ時間 6,816 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,208 KB
testcase_01 AC 125 ms
53,856 KB
testcase_02 AC 116 ms
52,876 KB
testcase_03 AC 132 ms
54,532 KB
testcase_04 AC 133 ms
54,052 KB
testcase_05 AC 132 ms
54,120 KB
testcase_06 AC 129 ms
54,004 KB
testcase_07 AC 129 ms
54,188 KB
testcase_08 AC 129 ms
54,084 KB
testcase_09 AC 131 ms
54,400 KB
testcase_10 AC 119 ms
52,580 KB
testcase_11 AC 132 ms
54,116 KB
testcase_12 AC 130 ms
54,156 KB
testcase_13 AC 132 ms
54,384 KB
testcase_14 AC 132 ms
53,976 KB
testcase_15 AC 116 ms
53,060 KB
testcase_16 AC 132 ms
53,860 KB
testcase_17 AC 138 ms
53,724 KB
testcase_18 AC 117 ms
53,012 KB
testcase_19 AC 133 ms
54,148 KB
testcase_20 AC 136 ms
53,836 KB
testcase_21 AC 129 ms
53,932 KB
testcase_22 AC 134 ms
54,136 KB
testcase_23 AC 130 ms
54,096 KB
testcase_24 AC 131 ms
54,096 KB
testcase_25 AC 134 ms
54,324 KB
testcase_26 AC 134 ms
54,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.BitSet;
import java.util.NoSuchElementException;
import java.util.Scanner;

public class Main{

	static final Scanner s=new Scanner(System.in);

	public static void main(String args[]){
		int n=Math.max(s.nextInt()-101,3),res;
		PrimeIterator pri = new PrimeIterator(n+100);
		while((res=pri.next())<n);
		System.out.println(res+1);
	}
}
class PrimeIterator{

	private BitSet	bitSet;
	private int		nextV;
	private int		limit;

	public PrimeIterator(int limit){
		this.limit=limit;
		bitSet=new BitSet(limit+1);
		reset();
	}

	public boolean hasNext(){
		return nextV>=0;
	}

	public int next(){
		if(!hasNext())
			throw new NoSuchElementException();
		int r=nextV;
		for(int i=0; i<bitSet.size(); i+=nextV)
			bitSet.set(i);
		nextV=bitSet.nextClearBit(0);

		if(nextV>limit) nextV=-1;
		return r;
	}

	public void reset(){
		nextV=2;
		bitSet.clear();
		bitSet.set(0);
		bitSet.set(1);
	}
}
0