結果

問題 No.843 Triple Primes
ユーザー asdf1asdf1
提出日時 2019-06-29 00:46:02
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,224 ms / 2,000 ms
コード長 1,505 bytes
コンパイル時間 1,575 ms
コンパイル使用メモリ 162,404 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-06 05:30:13
合計ジャッジ時間 24,853 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1,223 ms
6,820 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 3 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 3 ms
6,820 KB
testcase_07 AC 823 ms
6,820 KB
testcase_08 AC 980 ms
6,820 KB
testcase_09 AC 1,221 ms
6,820 KB
testcase_10 AC 885 ms
6,820 KB
testcase_11 AC 1,044 ms
6,816 KB
testcase_12 AC 1,178 ms
6,820 KB
testcase_13 AC 1,101 ms
6,820 KB
testcase_14 AC 1,074 ms
6,816 KB
testcase_15 AC 838 ms
6,820 KB
testcase_16 AC 872 ms
6,820 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 114 ms
6,820 KB
testcase_21 AC 41 ms
6,816 KB
testcase_22 AC 412 ms
6,816 KB
testcase_23 AC 457 ms
6,820 KB
testcase_24 AC 127 ms
6,816 KB
testcase_25 AC 78 ms
6,820 KB
testcase_26 AC 1,224 ms
6,820 KB
testcase_27 AC 9 ms
6,816 KB
testcase_28 AC 1,141 ms
6,820 KB
testcase_29 AC 141 ms
6,820 KB
testcase_30 AC 1,176 ms
6,816 KB
testcase_31 AC 17 ms
6,820 KB
testcase_32 AC 7 ms
6,820 KB
testcase_33 AC 164 ms
6,816 KB
testcase_34 AC 356 ms
6,816 KB
testcase_35 AC 1,209 ms
6,816 KB
testcase_36 AC 66 ms
6,816 KB
testcase_37 AC 751 ms
6,820 KB
testcase_38 AC 557 ms
6,820 KB
testcase_39 AC 1,154 ms
6,820 KB
testcase_40 AC 2 ms
6,816 KB
testcase_41 AC 1 ms
6,820 KB
testcase_42 AC 914 ms
6,816 KB
testcase_43 AC 1,054 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
typedef long long ll;
typedef long double ld;
const int INF=1e9,MOD=1e9+7,ohara=1e6+10;
const ll LINF=1e18;
using namespace std;

#define rep(i,n) for(int (i)=0;(i)<(int)(n);(i)++)
#define rrep(i,a,b) for(int i=(a);i<(b);i++)
#define rrrep(i,a,b) for(int i=(a);i>=(b);i--)
#define all(v) (v).begin(), (v).end()
#define Size(n) (n).size()
#define Cout(x) cout<<(x)<<endl
#define doublecout(a) cout<<fixed<<setprecision(15)<<a<<endl;
#define Cerr(x) cerr<<(x)<<endl
#define fi first
#define se second
#define P pair<ll,ll> 
#define m_p make_pair
#define V vector<ll> 
#define U_MAP unordered_map<ll,ll>

ll n,cnt,ans,a,b,c[ohara],d,tmp,tmpp,m,h,w,x,y,sum,pos,k;
ld doua;
int dy[]={1,0,-1,0};
int dx[]={0,1,0,-1};
//int dy[]={-1,0,1,-1,1,-1,0,1};
//int dx[]={-1,-1,-1,0,0,1,1,1};
string alph("abcdefghijklmnopqrstuvwxyz"),s;
bool fl,f[ohara];
struct edge{int to,cost;};
V sosu;

//-------------------------↓↓↓↓↓↓------------------------

int main(void){
        cin.tie(0);
        cout.tie(0);
    ios::sync_with_stdio(false);

    cin>>n;

    rrep(i,2,n+1){
        if(!f[i]){
            for(int j=i+i;j<=n;j+=i){
                f[j]=true;
            }
        }
    }
    for(int i=3;i<=n;i+=2){
        if(!f[i]){
            sosu.push_back(i);
        }
    }
    sosu.push_back(2);
    rep(p,Size(sosu)){
        rep(r,Size(sosu)){
            ll q=sosu[r]*sosu[r]-sosu[p];
            if(2<=q&&q<=n&&!f[q])ans++;
        }
    }
    Cout(ans);
    return 0;
}
0