結果

問題 No.843 Triple Primes
ユーザー phsplsphspls
提出日時 2020-04-11 22:55:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 946 bytes
コンパイル時間 1,770 ms
コンパイル使用メモリ 176,364 KB
実行使用メモリ 5,612 KB
最終ジャッジ日時 2023-10-19 19:29:22
合計ジャッジ時間 4,579 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 WA -
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 2 ms
4,348 KB
testcase_18 WA -
testcase_19 AC 2 ms
4,348 KB
testcase_20 WA -
testcase_21 AC 4 ms
4,348 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 5 ms
4,348 KB
testcase_26 WA -
testcase_27 AC 2 ms
4,348 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 3 ms
4,348 KB
testcase_32 AC 3 ms
4,348 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 4 ms
4,348 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 2 ms
4,348 KB
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define llong long long

vector<int> get_primes(int n) {
    vector<bool> primes(n+1, true);
    primes[0] = false;
    primes[1] = false;
    vector<int> ret;
    int limit = (int)sqrt(n)+1;
    for(int i=2; i<=limit; i++) {
        if(!primes[i]) continue;
        for(int j=i*i; j<=n; j+=i) {
            primes[j] = false;
        }
    }
    rep(i, n+1) {
        if(primes[i]) ret.push_back(i);
    }
    return ret;
}

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

    vector<int> primes = get_primes(n);
    set<llong> primes2;
    rep(i, primes.size()) primes2.insert(primes[i] * primes[i]);

    int result = 0;
    rep(i, primes.size()) {
        if(primes[i]==2) continue;
        if(primes2.find(2+primes[i]) != primes2.end()) {
            result++;
        }
    }
    result *= 2;
    if(n >= 4) result += 1;
    cout << result << "\n";
}
0