結果
| 問題 |
No.843 Triple Primes
|
| コンテスト | |
| ユーザー |
YamaKasa
|
| 提出日時 | 2019-06-29 02:46:34 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 6 ms / 2,000 ms |
| コード長 | 853 bytes |
| コンパイル時間 | 1,887 ms |
| コンパイル使用メモリ | 168,792 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-19 14:10:16 |
| 合計ジャッジ時間 | 2,828 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 42 |
ソースコード
#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<ll> p;
aryPrime();
for (int i = 2; i <= N; i++) {
if (isPrime[i]) {
p.push_back(i);
}
}
int ans = 0;
for (int i = 0; i < p.size(); i++) {
for (int j = 0; j < p.size(); j++) {
ll t = p[i] * p[i] - p[j];
if (t < 1 || t > N) break;
if (isPrime[t]) {
ans++;
}
}
}
cout << ans << "\n";
return 0;
}
YamaKasa