結果

問題 No.843 Triple Primes
ユーザー ttttan2ttttan2
提出日時 2019-06-28 21:43:39
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 337 ms / 2,000 ms
コード長 1,123 bytes
コンパイル時間 1,494 ms
コンパイル使用メモリ 166,892 KB
実行使用メモリ 20,864 KB
最終ジャッジ日時 2024-09-19 13:58:27
合計ジャッジ時間 10,820 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 335 ms
20,864 KB
testcase_02 AC 21 ms
7,936 KB
testcase_03 AC 17 ms
7,040 KB
testcase_04 AC 27 ms
9,472 KB
testcase_05 AC 18 ms
7,424 KB
testcase_06 AC 29 ms
9,600 KB
testcase_07 AC 292 ms
20,352 KB
testcase_08 AC 311 ms
20,608 KB
testcase_09 AC 337 ms
20,864 KB
testcase_10 AC 302 ms
20,480 KB
testcase_11 AC 323 ms
20,480 KB
testcase_12 AC 323 ms
20,716 KB
testcase_13 AC 318 ms
20,608 KB
testcase_14 AC 319 ms
20,736 KB
testcase_15 AC 295 ms
20,480 KB
testcase_16 AC 297 ms
20,480 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 149 ms
18,688 KB
testcase_21 AC 101 ms
17,408 KB
testcase_22 AC 228 ms
19,712 KB
testcase_23 AC 238 ms
19,840 KB
testcase_24 AC 159 ms
18,688 KB
testcase_25 AC 134 ms
18,304 KB
testcase_26 AC 334 ms
20,864 KB
testcase_27 AC 57 ms
14,080 KB
testcase_28 AC 320 ms
20,736 KB
testcase_29 AC 168 ms
18,944 KB
testcase_30 AC 331 ms
20,480 KB
testcase_31 AC 78 ms
15,872 KB
testcase_32 AC 53 ms
13,568 KB
testcase_33 AC 173 ms
18,944 KB
testcase_34 AC 220 ms
19,584 KB
testcase_35 AC 336 ms
20,864 KB
testcase_36 AC 126 ms
18,048 KB
testcase_37 AC 283 ms
20,352 KB
testcase_38 AC 254 ms
19,840 KB
testcase_39 AC 326 ms
20,736 KB
testcase_40 AC 1 ms
5,376 KB
testcase_41 AC 1 ms
5,376 KB
testcase_42 AC 302 ms
20,348 KB
testcase_43 AC 312 ms
20,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
//ios::sync_with_stdio(false);
//cin.tie(0);
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<pii,int> ppii;
typedef pair<int,pii> pipi;
typedef pair<ll,ll> pll;
typedef pair<pll,ll> plpl;
typedef tuple<ll,ll,ll> tl;
ll mod=1000000007;
ll mod2=998244353;
ll inf=1000000000000000000;
double pi=2*acos(0);
#define rep(i,m,n) for(int i=m;i<n;i++)
#define rrep(i,n,m) for(int i=n;i>=m;i--)
ll lmax(ll a,ll b){
    if(a<b)return b;
    else return a;
}
ll lmin(ll a,ll b){
    if(a<b)return a;
    else return b;
}
int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    vector<int> pri;
    int n;cin>>n;
    bool used[n+1];
    fill(used,used+n+1,false);
    map<int,int> mp;
    rep(i,2,n+1){
        if(used[i])continue;
        pri.push_back(i);
        mp[i]++;
        for(int j=i;j<=n;j+=i)used[j]=true;
    }
    
    ll ans=0;
    rep(i,0,pri.size()){
        if(pri[i]>1000)break;
        rep(j,0,pri.size()){
            int now=pri[i]*pri[i]-pri[j];
            if(now<=0)break;
            if(mp[now])ans++;
        }
    }
    cout<<ans<<endl;
}
0