結果

問題 No.843 Triple Primes
ユーザー NacoNaco
提出日時 2019-07-01 15:20:25
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,236 ms / 2,000 ms
コード長 998 bytes
コンパイル時間 675 ms
コンパイル使用メモリ 69,756 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-19 18:12:04
合計ジャッジ時間 25,482 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1,236 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 837 ms
6,944 KB
testcase_08 AC 974 ms
6,940 KB
testcase_09 AC 1,223 ms
6,944 KB
testcase_10 AC 893 ms
6,940 KB
testcase_11 AC 1,064 ms
6,940 KB
testcase_12 AC 1,177 ms
6,944 KB
testcase_13 AC 1,124 ms
6,940 KB
testcase_14 AC 1,124 ms
6,940 KB
testcase_15 AC 849 ms
6,940 KB
testcase_16 AC 890 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 115 ms
6,944 KB
testcase_21 AC 40 ms
6,944 KB
testcase_22 AC 415 ms
6,940 KB
testcase_23 AC 448 ms
6,940 KB
testcase_24 AC 130 ms
6,940 KB
testcase_25 AC 80 ms
6,944 KB
testcase_26 AC 1,231 ms
6,944 KB
testcase_27 AC 9 ms
6,944 KB
testcase_28 AC 1,137 ms
6,940 KB
testcase_29 AC 145 ms
6,944 KB
testcase_30 AC 1,206 ms
6,940 KB
testcase_31 AC 18 ms
6,940 KB
testcase_32 AC 8 ms
6,940 KB
testcase_33 AC 169 ms
6,940 KB
testcase_34 AC 366 ms
6,940 KB
testcase_35 AC 1,230 ms
6,940 KB
testcase_36 AC 64 ms
6,940 KB
testcase_37 AC 777 ms
6,940 KB
testcase_38 AC 564 ms
6,940 KB
testcase_39 AC 1,150 ms
6,944 KB
testcase_40 AC 2 ms
6,944 KB
testcase_41 AC 2 ms
6,944 KB
testcase_42 AC 974 ms
6,940 KB
testcase_43 AC 1,114 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<cmath>
using namespace std;

vector<bool> prime_table(int n){ //素数全列挙
    vector<bool> prime(n+1,true);
    prime[0]=prime[1]=false;
    for(int i=2;i*i<=n;i++){
        if(prime[i]!=true) continue;
        for(int j=2*i;j<=n;j+=i){
            prime[j]=false;
        }
    }
    return prime; //i番目の要素が素数の場合trueを返す
}

int main(){
    int N;
    cin >> N;
    vector<bool> eratos;
    eratos=prime_table(N);
    vector<long long> res;
    for(int i=0;i<=N;i++){
        if(eratos[i]==true){
            res.push_back(i);
        }
    }
    int ans=0;
    for(int i=0;i<res.size();i++){
        for(int j=0;j<res.size();j++){
            long long k=res[i]*res[i]-res[j];
            if(k>=0&&k<=N){
                if(eratos[k]==true){
                    ans++;
                    //cout << res[i] << res[j] << endl;
                }
            }
        }
    }
    cout << ans << endl;
}
0