結果

問題 No.843 Triple Primes
ユーザー 37zigen37zigen
提出日時 2020-03-19 00:31:16
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 980 bytes
コンパイル時間 2,122 ms
コンパイル使用メモリ 77,976 KB
実行使用メモリ 50,404 KB
最終ジャッジ日時 2024-05-08 02:55:10
合計ジャッジ時間 12,278 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,020 KB
testcase_01 AC 259 ms
41,768 KB
testcase_02 AC 113 ms
40,648 KB
testcase_03 AC 113 ms
40,016 KB
testcase_04 AC 125 ms
41,180 KB
testcase_05 AC 118 ms
41,484 KB
testcase_06 AC 114 ms
41,276 KB
testcase_07 AC 232 ms
42,124 KB
testcase_08 AC 245 ms
41,824 KB
testcase_09 AC 257 ms
42,168 KB
testcase_10 AC 227 ms
41,580 KB
testcase_11 AC 254 ms
42,148 KB
testcase_12 AC 254 ms
41,828 KB
testcase_13 AC 269 ms
41,612 KB
testcase_14 AC 261 ms
42,208 KB
testcase_15 AC 245 ms
42,084 KB
testcase_16 AC 246 ms
41,720 KB
testcase_17 AC 115 ms
41,304 KB
testcase_18 WA -
testcase_19 AC 118 ms
40,504 KB
testcase_20 AC 151 ms
41,136 KB
testcase_21 AC 137 ms
40,964 KB
testcase_22 AC 196 ms
41,620 KB
testcase_23 AC 185 ms
41,440 KB
testcase_24 AC 177 ms
41,768 KB
testcase_25 AC 166 ms
41,276 KB
testcase_26 AC 262 ms
41,724 KB
testcase_27 AC 119 ms
41,472 KB
testcase_28 AC 255 ms
41,592 KB
testcase_29 AC 157 ms
41,204 KB
testcase_30 AC 245 ms
41,844 KB
testcase_31 AC 140 ms
41,472 KB
testcase_32 AC 121 ms
41,396 KB
testcase_33 AC 175 ms
41,368 KB
testcase_34 AC 208 ms
41,572 KB
testcase_35 AC 255 ms
41,572 KB
testcase_36 AC 155 ms
50,404 KB
testcase_37 AC 237 ms
41,960 KB
testcase_38 AC 218 ms
41,748 KB
testcase_39 AC 257 ms
41,812 KB
testcase_40 WA -
testcase_41 AC 112 ms
40,220 KB
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Comparator;
import java.util.PriorityQueue;
import java.util.Scanner;

class Main {

	public static void main(String[] args) {
		new Main().run();
	}
	
	void run() {
		Scanner sc = new Scanner(System.in);
		int N=sc.nextInt();
		boolean[] isPrime=new boolean[N+1];
		Arrays.fill(isPrime, true);
		isPrime[0]=isPrime[1]=false;
		int sz=0;
		for(int i=2;i<isPrime.length;++i) {
			if(!isPrime[i])continue;
			++sz;
			for(int j=2*i;j<isPrime.length;j+=i) {
				isPrime[j]=false;
			}
		}
		int[] primes=new int[sz];
		sz=0;
		int ans=0;
		for(int i=0;i<isPrime.length;++i)if(isPrime[i])primes[sz++]=i;
		for(int i=0;i<primes.length&&primes[i]*primes[i]<=N;++i) {
			for(int j=0;j<primes.length;++j) {
				int res=primes[i]*primes[i]-primes[j];
				if(res<0)break;
				if(Arrays.binarySearch(primes, res)>=0)++ans;
			}
		}
		System.out.println(ans);
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0