結果

問題 No.843 Triple Primes
ユーザー kmjpkmjp
提出日時 2019-06-29 00:29:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,210 bytes
コンパイル時間 1,660 ms
コンパイル使用メモリ 169,524 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-07-02 05:19:16
合計ジャッジ時間 19,985 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
8,016 KB
testcase_01 AC 906 ms
8,064 KB
testcase_02 AC 14 ms
8,064 KB
testcase_03 AC 14 ms
8,064 KB
testcase_04 AC 14 ms
8,064 KB
testcase_05 AC 14 ms
8,116 KB
testcase_06 AC 15 ms
8,064 KB
testcase_07 AC 611 ms
7,936 KB
testcase_08 AC 719 ms
7,936 KB
testcase_09 AC 893 ms
8,064 KB
testcase_10 AC 650 ms
8,064 KB
testcase_11 AC 774 ms
7,936 KB
testcase_12 AC 862 ms
7,936 KB
testcase_13 AC 815 ms
7,936 KB
testcase_14 AC 820 ms
7,936 KB
testcase_15 AC 626 ms
7,936 KB
testcase_16 AC 643 ms
7,936 KB
testcase_17 AC 13 ms
7,936 KB
testcase_18 WA -
testcase_19 AC 14 ms
7,936 KB
testcase_20 AC 99 ms
8,064 KB
testcase_21 AC 42 ms
8,064 KB
testcase_22 AC 318 ms
8,064 KB
testcase_23 AC 344 ms
7,936 KB
testcase_24 AC 107 ms
7,936 KB
testcase_25 AC 71 ms
8,064 KB
testcase_26 AC 890 ms
7,936 KB
testcase_27 AC 20 ms
8,064 KB
testcase_28 AC 835 ms
7,936 KB
testcase_29 AC 119 ms
7,936 KB
testcase_30 AC 868 ms
8,064 KB
testcase_31 AC 26 ms
8,064 KB
testcase_32 AC 18 ms
8,064 KB
testcase_33 AC 139 ms
7,936 KB
testcase_34 AC 278 ms
8,064 KB
testcase_35 AC 898 ms
7,936 KB
testcase_36 AC 60 ms
8,064 KB
testcase_37 AC 578 ms
7,936 KB
testcase_38 AC 422 ms
8,064 KB
testcase_39 AC 851 ms
8,064 KB
testcase_40 WA -
testcase_41 AC 13 ms
8,016 KB
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
vector<int> prime;
int ok[505050];
int NP,divp[prime_max];

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

int N;

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cprime();
	ll ret=0;
	
	cin>>N;
	FOR(i,NP) if(prime[i]<=N) {
		FOR(j,NP) {
			if(prime[i]+prime[j]>N) break;
			if(ok[prime[i]+prime[j]]) ret++;
		}
	}
	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