結果

問題 No.732 3PrimeCounting
ユーザー dama_mathdama_math
提出日時 2018-09-07 23:15:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 582 ms / 3,000 ms
コード長 1,012 bytes
コンパイル時間 1,485 ms
コンパイル使用メモリ 169,188 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-07 05:46:32
合計ジャッジ時間 9,688 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 5 ms
5,376 KB
testcase_26 AC 4 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 AC 4 ms
5,376 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 4 ms
5,376 KB
testcase_32 AC 5 ms
5,376 KB
testcase_33 AC 4 ms
5,376 KB
testcase_34 AC 5 ms
5,376 KB
testcase_35 AC 4 ms
5,376 KB
testcase_36 AC 4 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 3 ms
5,376 KB
testcase_39 AC 4 ms
5,376 KB
testcase_40 AC 3 ms
5,376 KB
testcase_41 AC 4 ms
5,376 KB
testcase_42 AC 4 ms
5,376 KB
testcase_43 AC 3 ms
5,376 KB
testcase_44 AC 4 ms
5,376 KB
testcase_45 AC 3 ms
5,376 KB
testcase_46 AC 3 ms
5,376 KB
testcase_47 AC 3 ms
5,376 KB
testcase_48 AC 5 ms
5,376 KB
testcase_49 AC 5 ms
5,376 KB
testcase_50 AC 4 ms
5,376 KB
testcase_51 AC 3 ms
5,376 KB
testcase_52 AC 2 ms
5,376 KB
testcase_53 AC 13 ms
5,376 KB
testcase_54 AC 194 ms
5,376 KB
testcase_55 AC 196 ms
5,376 KB
testcase_56 AC 199 ms
5,376 KB
testcase_57 AC 37 ms
5,376 KB
testcase_58 AC 36 ms
5,376 KB
testcase_59 AC 13 ms
5,376 KB
testcase_60 AC 55 ms
5,376 KB
testcase_61 AC 55 ms
5,376 KB
testcase_62 AC 254 ms
5,376 KB
testcase_63 AC 107 ms
5,376 KB
testcase_64 AC 72 ms
5,376 KB
testcase_65 AC 74 ms
5,376 KB
testcase_66 AC 3 ms
5,376 KB
testcase_67 AC 3 ms
5,376 KB
testcase_68 AC 220 ms
5,376 KB
testcase_69 AC 220 ms
5,376 KB
testcase_70 AC 192 ms
5,376 KB
testcase_71 AC 203 ms
5,376 KB
testcase_72 AC 97 ms
5,376 KB
testcase_73 AC 456 ms
5,376 KB
testcase_74 AC 424 ms
5,376 KB
testcase_75 AC 5 ms
5,376 KB
testcase_76 AC 216 ms
5,376 KB
testcase_77 AC 40 ms
5,376 KB
testcase_78 AC 319 ms
5,376 KB
testcase_79 AC 221 ms
5,376 KB
testcase_80 AC 287 ms
5,376 KB
testcase_81 AC 197 ms
5,376 KB
testcase_82 AC 3 ms
5,376 KB
testcase_83 AC 39 ms
5,376 KB
testcase_84 AC 43 ms
5,376 KB
testcase_85 AC 165 ms
5,376 KB
testcase_86 AC 295 ms
5,376 KB
testcase_87 AC 582 ms
5,376 KB
testcase_88 AC 569 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define ll long long
#define PB push_back
#define FOR(i,a,b) for(int i=a;i<b;i++)
using namespace std;

//素数判定
bool pj(int n){
    if(n==1) return false;
    int d=2;
    while(d*d<=n){
        if(n%d==0)return false;
        d++;
    }
    return true;
}

int m[300000];
vector<int> v;
int main(){
    int n; cin>>n;
    memset(m,0,sizeof(m));
    FOR(i,1,3*n+1) if(pj(i)) v.PB(i);
    v.PB(1e9);
    for(int i=0;v[i]<=n;i++){
        for(int j=0;v[j]<=n;j++){
            m[v[i]+v[j]]++;
        }
    }
    ll ans1=0,ans2=0;
    for(int i=0;v[i]<=3*n;i++){
        for(int j=0;v[j]<=n;j++){
            if(v[i]>v[j]){
                ans1+=m[v[i]-v[j]];
            }
        }
    }
    memset(m,0,sizeof(m));
    for(int i=0;v[i]<=n;i++){
        m[2*v[i]]++;
    }
    for(int i=0;v[i]<=3*n;i++){
        for(int j=0;v[j]<=n;j++){
            if(v[i]>v[j]){
                ans2+=m[v[i]-v[j]];
            }
        }
    }
    cout<<(ans1-ans2*3)/6<<endl;
    return 0;
}
0