結果

問題 No.843 Triple Primes
ユーザー Y17Y17
提出日時 2019-06-28 21:57:42
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 681 bytes
コンパイル時間 1,438 ms
コンパイル使用メモリ 166,720 KB
実行使用メモリ 9,388 KB
最終ジャッジ日時 2024-07-02 04:41:52
合計ジャッジ時間 4,944 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 116 ms
9,388 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 89 ms
8,356 KB
testcase_08 AC 110 ms
8,748 KB
testcase_09 AC 115 ms
9,340 KB
testcase_10 AC 98 ms
8,624 KB
testcase_11 AC 111 ms
8,940 KB
testcase_12 AC 119 ms
9,252 KB
testcase_13 AC 116 ms
9,072 KB
testcase_14 AC 115 ms
9,072 KB
testcase_15 AC 91 ms
8,408 KB
testcase_16 AC 97 ms
8,552 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 WA -
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 21 ms
6,940 KB
testcase_21 AC 11 ms
6,944 KB
testcase_22 AC 54 ms
8,380 KB
testcase_23 AC 55 ms
7,452 KB
testcase_24 AC 22 ms
6,948 KB
testcase_25 AC 16 ms
6,944 KB
testcase_26 AC 117 ms
9,336 KB
testcase_27 AC 5 ms
6,944 KB
testcase_28 AC 120 ms
9,184 KB
testcase_29 AC 25 ms
6,940 KB
testcase_30 AC 118 ms
9,264 KB
testcase_31 AC 7 ms
6,940 KB
testcase_32 AC 5 ms
6,944 KB
testcase_33 AC 28 ms
6,940 KB
testcase_34 AC 49 ms
7,724 KB
testcase_35 AC 116 ms
9,236 KB
testcase_36 AC 14 ms
6,944 KB
testcase_37 AC 88 ms
8,312 KB
testcase_38 AC 64 ms
7,492 KB
testcase_39 AC 120 ms
9,220 KB
testcase_40 WA -
testcase_41 AC 2 ms
6,940 KB
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

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 > 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