結果

問題 No.843 Triple Primes
ユーザー YamaKasa
提出日時 2019-06-29 02:40:20
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 941 bytes
コンパイル時間 1,670 ms
コンパイル使用メモリ 169,284 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-02 05:21:43
合計ジャッジ時間 3,014 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 16 WA * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

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

static const int MAX = 500005;
bool isPrime[MAX];

void aryPrime() {
  for (int i = 0; i < MAX; i++) isPrime[i] = true;
  isPrime[0] = false;
  isPrime[1] = false;
  int n = sqrt(MAX);
  for (int i = 2; i <= n; i++) {
    if (!isPrime[i]) continue;
    for (int j = i * 2; j < MAX; j += i) {
      isPrime[j] = false;
    }
  }
}
int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);
  int N;
  cin >> N;
  vector<int> p;
  aryPrime();
  for (int i = 2; i <= N; i++) {
    if (isPrime[i]) {
      p.push_back(i);
    }
  }
  
  int ans = 0;
  int k = 0;
  for (int i = 0; i < p.size(); i++) {
    for (int j = 0; j < p.size(); j++) {
      int t = p[i] * p[i] - p[j];
      if (t < 1 || t > N) break;
      if (isPrime[t]) {
        ans++;
        if (p[i] == p[j] || t == p[i]) k++;
      }
    }
  }
  //cout << p.size() << "\n";
  cout << ans << "\n";
  return 0;
}
0