結果

問題 No.843 Triple Primes
ユーザー drken1215drken1215
提出日時 2020-11-02 13:04:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 1,744 bytes
コンパイル時間 2,093 ms
コンパイル使用メモリ 206,408 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-29 11:48:00
合計ジャッジ時間 5,095 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

#define COUT(x) cout << #x << " = " << (x) << " (L" << __LINE__ << ")" << endl
template<class T1, class T2> ostream& operator << (ostream &s, pair<T1,T2> P)
{ return s << '<' << P.first << ", " << P.second << '>'; }
template<class T> ostream& operator << (ostream &s, vector<T> P)
{ for (int i = 0; i < P.size(); ++i) { if (i > 0) { s << " "; } s << P[i]; } return s; }
template<class T> ostream& operator << (ostream &s, vector<vector<T> > P)
{ for (int i = 0; i < P.size(); ++i) { s << endl << P[i]; } return s << endl; }
template<class T> ostream& operator << (ostream &s, set<T> P)
{ for(auto it : P) { s << "<" << it << "> "; } return s << endl; }
template<class T1, class T2> ostream& operator << (ostream &s, map<T1,T2> P)
{ for(auto it : P) { s << "<" << it.first << "->" << it.second << "> "; } return s << endl; }

vector<bool> isprime;
vector<int> Era(int n) {
    isprime.resize(n, true);
    vector<int> res;
    isprime[0] = false; isprime[1] = false;
    for (int i = 2; i < n; ++i) isprime[i] = true;
    for (int i = 2; i < n; ++i) {
        if (isprime[i]) {
            res.push_back(i);
            for (int j = i*2; j < n; j += i) isprime[j] = false;
        }
    }
    return res;
}

long long solve(long long N) {
    Era(1000000);
    if (N == 1) return 0;
    long long res = 1; // (2, 2, 2)
    for (long long r = 3; r*r - 2 <= N; ++r) {
        if (isprime[r] && isprime[r*r-2]) res += 2;
    }
    return res;
}

int main() {
    int N;
    cin >> N;
    cout << solve(N) << endl;
}
0