結果

問題 No.843 Triple Primes
ユーザー Y17Y17
提出日時 2019-06-28 22:00:57
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 697 bytes
コンパイル時間 1,951 ms
コンパイル使用メモリ 165,592 KB
実行使用メモリ 9,368 KB
最終ジャッジ日時 2024-09-19 14:02:29
合計ジャッジ時間 7,757 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 261 ms
9,232 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 213 ms
8,376 KB
testcase_08 AC 236 ms
8,596 KB
testcase_09 AC 263 ms
9,228 KB
testcase_10 AC 217 ms
8,580 KB
testcase_11 AC 251 ms
8,912 KB
testcase_12 AC 301 ms
9,252 KB
testcase_13 AC 288 ms
8,944 KB
testcase_14 AC 255 ms
9,044 KB
testcase_15 AC 216 ms
8,320 KB
testcase_16 AC 220 ms
8,448 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 42 ms
5,376 KB
testcase_21 AC 15 ms
5,376 KB
testcase_22 AC 105 ms
6,912 KB
testcase_23 AC 122 ms
7,168 KB
testcase_24 AC 42 ms
5,376 KB
testcase_25 AC 30 ms
5,376 KB
testcase_26 AC 256 ms
9,208 KB
testcase_27 AC 5 ms
5,376 KB
testcase_28 AC 278 ms
9,056 KB
testcase_29 AC 46 ms
5,376 KB
testcase_30 AC 277 ms
9,280 KB
testcase_31 AC 9 ms
5,376 KB
testcase_32 AC 5 ms
5,376 KB
testcase_33 AC 55 ms
5,632 KB
testcase_34 AC 99 ms
6,656 KB
testcase_35 AC 262 ms
9,368 KB
testcase_36 AC 26 ms
5,376 KB
testcase_37 AC 189 ms
8,084 KB
testcase_38 AC 145 ms
7,256 KB
testcase_39 AC 267 ms
9,216 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 1 ms
5,376 KB
testcase_42 AC 226 ms
8,496 KB
testcase_43 AC 250 ms
8,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define int long long

int tbl[500010] = {};
vector<int> so;
set<int> st;

signed main(){
    int n;
    cin >> n;

    for(int i = 2;i <= n;i++){
        if(tbl[i] == 0){
            so.push_back(i);
            st.insert(i);
            for(int j = i*2;j <= n;j+=i){
                tbl[j] = 1;
            }
        }
    }

    int cnt = 0;

    for(int i = 0;i < so.size();i++){
        int rr = so[i]*so[i];
        if(rr-so[so.size()-1] > n) break;
        for(int j = 0;j < so.size();j++){
            if(rr-so[j] < 2) break;
            if(st.find(rr-so[j]) != st.end()) cnt++;
        }
    }

    cout << cnt << endl;
    return 0;
}





0