結果

問題 No.732 3PrimeCounting
ユーザー kmjpkmjp
提出日時 2018-09-08 22:23:56
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 137 ms / 3,000 ms
コード長 1,224 bytes
コンパイル時間 1,548 ms
コンパイル使用メモリ 163,752 KB
実行使用メモリ 8,644 KB
最終ジャッジ日時 2024-06-01 04:49:08
合計ジャッジ時間 6,446 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
7,552 KB
testcase_01 AC 13 ms
8,132 KB
testcase_02 AC 10 ms
7,424 KB
testcase_03 AC 12 ms
7,424 KB
testcase_04 AC 12 ms
7,552 KB
testcase_05 AC 12 ms
7,552 KB
testcase_06 AC 13 ms
7,552 KB
testcase_07 AC 11 ms
7,644 KB
testcase_08 AC 10 ms
7,516 KB
testcase_09 AC 10 ms
7,520 KB
testcase_10 AC 12 ms
7,388 KB
testcase_11 AC 12 ms
7,552 KB
testcase_12 AC 10 ms
7,424 KB
testcase_13 AC 12 ms
7,392 KB
testcase_14 AC 12 ms
7,520 KB
testcase_15 AC 13 ms
7,424 KB
testcase_16 AC 13 ms
8,644 KB
testcase_17 AC 12 ms
7,552 KB
testcase_18 AC 12 ms
7,552 KB
testcase_19 AC 10 ms
7,648 KB
testcase_20 AC 11 ms
7,524 KB
testcase_21 AC 12 ms
7,552 KB
testcase_22 AC 12 ms
7,648 KB
testcase_23 AC 14 ms
7,424 KB
testcase_24 AC 12 ms
7,648 KB
testcase_25 AC 14 ms
7,872 KB
testcase_26 AC 13 ms
7,652 KB
testcase_27 AC 10 ms
7,552 KB
testcase_28 AC 12 ms
7,552 KB
testcase_29 AC 13 ms
7,552 KB
testcase_30 AC 13 ms
7,648 KB
testcase_31 AC 13 ms
7,424 KB
testcase_32 AC 13 ms
7,648 KB
testcase_33 AC 12 ms
7,876 KB
testcase_34 AC 12 ms
7,876 KB
testcase_35 AC 14 ms
7,552 KB
testcase_36 AC 13 ms
7,552 KB
testcase_37 AC 14 ms
7,552 KB
testcase_38 AC 13 ms
7,424 KB
testcase_39 AC 14 ms
8,132 KB
testcase_40 AC 12 ms
7,648 KB
testcase_41 AC 12 ms
7,748 KB
testcase_42 AC 12 ms
7,776 KB
testcase_43 AC 14 ms
7,424 KB
testcase_44 AC 10 ms
7,644 KB
testcase_45 AC 11 ms
7,424 KB
testcase_46 AC 12 ms
7,644 KB
testcase_47 AC 11 ms
7,648 KB
testcase_48 AC 13 ms
7,644 KB
testcase_49 AC 12 ms
7,680 KB
testcase_50 AC 13 ms
7,552 KB
testcase_51 AC 12 ms
7,552 KB
testcase_52 AC 10 ms
7,652 KB
testcase_53 AC 12 ms
7,772 KB
testcase_54 AC 53 ms
8,392 KB
testcase_55 AC 54 ms
8,064 KB
testcase_56 AC 53 ms
8,064 KB
testcase_57 AC 21 ms
7,552 KB
testcase_58 AC 21 ms
7,552 KB
testcase_59 AC 15 ms
7,552 KB
testcase_60 AC 24 ms
7,644 KB
testcase_61 AC 25 ms
7,808 KB
testcase_62 AC 67 ms
8,064 KB
testcase_63 AC 36 ms
7,936 KB
testcase_64 AC 27 ms
8,136 KB
testcase_65 AC 26 ms
8,260 KB
testcase_66 AC 13 ms
7,552 KB
testcase_67 AC 13 ms
7,552 KB
testcase_68 AC 60 ms
8,064 KB
testcase_69 AC 58 ms
7,936 KB
testcase_70 AC 54 ms
7,936 KB
testcase_71 AC 54 ms
8,260 KB
testcase_72 AC 33 ms
7,808 KB
testcase_73 AC 102 ms
8,192 KB
testcase_74 AC 101 ms
8,192 KB
testcase_75 AC 12 ms
7,876 KB
testcase_76 AC 57 ms
8,392 KB
testcase_77 AC 21 ms
7,808 KB
testcase_78 AC 80 ms
8,512 KB
testcase_79 AC 61 ms
8,064 KB
testcase_80 AC 73 ms
8,264 KB
testcase_81 AC 54 ms
8,392 KB
testcase_82 AC 13 ms
7,552 KB
testcase_83 AC 19 ms
7,680 KB
testcase_84 AC 20 ms
8,388 KB
testcase_85 AC 46 ms
8,032 KB
testcase_86 AC 75 ms
8,064 KB
testcase_87 AC 135 ms
8,540 KB
testcase_88 AC 137 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

const int prime_max = 1000000;
int NP,prime[100000],divp[prime_max];
map<int,int> M;

void cprime() {
	if(NP) return;
	for(int i=2;i<prime_max;i++) if(divp[i]==0) {
		//M[i]=NP;
		prime[NP++]=i;
		for(ll j=1LL*i*i;j>=i&&j<prime_max;j+=i) if(divp[j]==0) divp[j]=i;
	}
}

int N;
int cnt[303030];
void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N;
	cprime();
	
	ll ret=0;
	int a,b,c;
	for(c=2;prime[c]<=N;c++) {
		b=c-1;
		FOR(a,b) cnt[prime[a]+prime[b]]++;
		for(y=c+1;prime[y]<=prime[c]*3;y++) ret+=cnt[prime[y]-prime[c]];
	}
	
	cout<<ret<<endl;
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0