結果
問題 | No.843 Triple Primes |
ユーザー | YamaKasa |
提出日時 | 2019-06-29 02:40:20 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | AC | 3 ms
6,940 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 3 ms
6,940 KB |
testcase_05 | AC | 3 ms
6,940 KB |
testcase_06 | AC | 3 ms
6,940 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 | 3 ms
6,940 KB |
testcase_18 | AC | 3 ms
6,944 KB |
testcase_19 | AC | 3 ms
6,944 KB |
testcase_20 | WA | - |
testcase_21 | AC | 4 ms
6,940 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 4 ms
6,944 KB |
testcase_26 | WA | - |
testcase_27 | AC | 3 ms
6,940 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 4 ms
6,940 KB |
testcase_32 | AC | 3 ms
6,940 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 3 ms
6,944 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 3 ms
6,940 KB |
testcase_41 | AC | 3 ms
6,940 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
ソースコード
#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; }