結果

問題 No.732 3PrimeCounting
ユーザー chocoruskchocorusk
提出日時 2018-09-20 12:23:55
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 1,019 bytes
コンパイル時間 644 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 7,040 KB
最終ジャッジ日時 2024-07-18 08:31:20
合計ジャッジ時間 11,632 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
6,812 KB
testcase_01 AC 4 ms
6,940 KB
testcase_02 AC 5 ms
6,944 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 5 ms
6,944 KB
testcase_06 AC 4 ms
6,944 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 4 ms
6,944 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 5 ms
6,944 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 5 ms
6,944 KB
testcase_14 AC 4 ms
6,944 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 4 ms
6,940 KB
testcase_17 AC 4 ms
6,944 KB
testcase_18 AC 4 ms
6,940 KB
testcase_19 AC 4 ms
6,940 KB
testcase_20 AC 5 ms
6,940 KB
testcase_21 AC 5 ms
6,940 KB
testcase_22 AC 5 ms
6,940 KB
testcase_23 AC 4 ms
6,940 KB
testcase_24 AC 4 ms
6,940 KB
testcase_25 AC 6 ms
6,940 KB
testcase_26 AC 5 ms
6,944 KB
testcase_27 AC 4 ms
6,944 KB
testcase_28 AC 5 ms
6,940 KB
testcase_29 AC 5 ms
6,940 KB
testcase_30 AC 4 ms
6,940 KB
testcase_31 AC 6 ms
6,940 KB
testcase_32 AC 6 ms
6,940 KB
testcase_33 AC 6 ms
6,940 KB
testcase_34 AC 6 ms
6,944 KB
testcase_35 AC 6 ms
6,940 KB
testcase_36 AC 5 ms
6,940 KB
testcase_37 AC 4 ms
6,944 KB
testcase_38 AC 5 ms
6,944 KB
testcase_39 AC 5 ms
6,940 KB
testcase_40 AC 6 ms
6,940 KB
testcase_41 AC 5 ms
6,940 KB
testcase_42 AC 5 ms
6,944 KB
testcase_43 AC 5 ms
6,940 KB
testcase_44 AC 5 ms
6,940 KB
testcase_45 AC 4 ms
6,944 KB
testcase_46 AC 5 ms
6,940 KB
testcase_47 AC 5 ms
6,940 KB
testcase_48 AC 7 ms
6,940 KB
testcase_49 AC 6 ms
6,940 KB
testcase_50 AC 5 ms
6,944 KB
testcase_51 AC 5 ms
6,940 KB
testcase_52 AC 4 ms
6,940 KB
testcase_53 AC 12 ms
6,944 KB
testcase_54 AC 177 ms
6,948 KB
testcase_55 RE -
testcase_56 RE -
testcase_57 AC 32 ms
6,944 KB
testcase_58 AC 33 ms
6,948 KB
testcase_59 RE -
testcase_60 AC 48 ms
6,940 KB
testcase_61 AC 48 ms
6,940 KB
testcase_62 AC 249 ms
6,944 KB
testcase_63 RE -
testcase_64 RE -
testcase_65 RE -
testcase_66 AC 5 ms
6,940 KB
testcase_67 AC 4 ms
6,944 KB
testcase_68 RE -
testcase_69 RE -
testcase_70 RE -
testcase_71 RE -
testcase_72 RE -
testcase_73 WA -
testcase_74 WA -
testcase_75 AC 6 ms
6,940 KB
testcase_76 RE -
testcase_77 AC 35 ms
6,940 KB
testcase_78 WA -
testcase_79 RE -
testcase_80 AC 283 ms
7,040 KB
testcase_81 AC 180 ms
6,944 KB
testcase_82 AC 4 ms
6,940 KB
testcase_83 AC 34 ms
6,940 KB
testcase_84 AC 39 ms
6,944 KB
testcase_85 RE -
testcase_86 AC 294 ms
6,944 KB
testcase_87 AC 672 ms
7,040 KB
testcase_88 AC 665 ms
7,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;

int n;
vector<int> prime;
bool isprime[300001];
 
void sieve(){
	for(int i=3; i<=3*n; i+=2){
		isprime[i]=1;
	}
	isprime[2]=1;
	prime.push_back(2);
	for(int i=3; i<=3*n; i++){
		if(isprime[i]){
			prime.push_back(i);
			for(int j=2*i; j<=3*n; j+=i){
				isprime[j]=0;
			}
		}
	}
	return;
}

int main()
{
	cin>>n;
	sieve();
	ll ct1[200001]={}, ct2[200001]={}, ct3=0;
	for(int i=0; prime[i]<=n; i++){
		for(int j=0; prime[j]<=n; j++){
			ct1[prime[i]+prime[j]]++;
			if(isprime[2*prime[i]+prime[j]]) ct3+=3;
		}
	}
	for(int i=0; prime[i]<=n; i++){
		for(int j=i+1; prime[j]-prime[i]<=2*n; j++){
			ct2[prime[j]-prime[i]]++;
		}
	}
	ll ans=0;
	for(int i=1; i<=2*n; i++){
		ans+=ct1[i]*ct2[i];
	}
	cout<<(ans-ct3)/6<<endl;
	return 0;
}
0