結果
問題 | No.843 Triple Primes |
ユーザー | ikd |
提出日時 | 2019-06-28 22:59:42 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 710 bytes |
コンパイル時間 | 628 ms |
コンパイル使用メモリ | 73,728 KB |
実行使用メモリ | 5,712 KB |
最終ジャッジ日時 | 2024-07-02 05:05:57 |
合計ジャッジ時間 | 11,935 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | WA | - |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | WA | - |
testcase_30 | RE | - |
testcase_31 | WA | - |
testcase_32 | RE | - |
testcase_33 | WA | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | WA | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | AC | 2 ms
5,376 KB |
testcase_41 | AC | 2 ms
5,376 KB |
testcase_42 | RE | - |
testcase_43 | RE | - |
ソースコード
#include <algorithm> #include <iostream> #include <vector> #define rep(i, n) for (int i = 0; i < (int)(n); i++) using namespace std; bool is_prime(int64_t x) { for (int64_t y = 2; y * y <= x; y++) { if (x % y == 0) return false; } return true; } int main() { int n; cin >> n; vector<int64_t> primes; for (int64_t x = 2; x <= n; x++) { if (is_prime(x)) primes.push_back(x); } vector<int> exists(n + 1, false); for (auto p : primes) { exists[p] = true; } int ans = 0; for (auto r : primes) { if (r * r > n * 2) break; for (auto p : primes) { auto q = r * r - p; if (q >= 0 and exists[q]) { ans += 1; } } } cout << ans << endl; return 0; }