結果
問題 | No.843 Triple Primes |
ユーザー | Kichico |
提出日時 | 2022-05-12 01:40:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,924 bytes |
コンパイル時間 | 2,590 ms |
コンパイル使用メモリ | 213,172 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-19 12:18:38 |
合計ジャッジ時間 | 9,419 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 296 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 212 ms
5,376 KB |
testcase_08 | AC | 239 ms
5,376 KB |
testcase_09 | AC | 295 ms
5,376 KB |
testcase_10 | AC | 224 ms
5,376 KB |
testcase_11 | AC | 258 ms
5,376 KB |
testcase_12 | AC | 283 ms
5,376 KB |
testcase_13 | AC | 270 ms
5,376 KB |
testcase_14 | AC | 271 ms
5,376 KB |
testcase_15 | AC | 216 ms
5,376 KB |
testcase_16 | AC | 220 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 45 ms
5,376 KB |
testcase_21 | AC | 21 ms
5,376 KB |
testcase_22 | AC | 121 ms
5,376 KB |
testcase_23 | AC | 128 ms
5,376 KB |
testcase_24 | AC | 49 ms
5,376 KB |
testcase_25 | AC | 37 ms
5,376 KB |
testcase_26 | AC | 292 ms
5,376 KB |
testcase_27 | AC | 7 ms
5,376 KB |
testcase_28 | AC | 275 ms
5,376 KB |
testcase_29 | AC | 54 ms
5,376 KB |
testcase_30 | AC | 284 ms
5,376 KB |
testcase_31 | AC | 12 ms
5,376 KB |
testcase_32 | AC | 6 ms
5,376 KB |
testcase_33 | AC | 63 ms
5,376 KB |
testcase_34 | AC | 107 ms
5,376 KB |
testcase_35 | AC | 295 ms
5,376 KB |
testcase_36 | AC | 32 ms
5,376 KB |
testcase_37 | AC | 200 ms
5,376 KB |
testcase_38 | AC | 154 ms
5,376 KB |
testcase_39 | AC | 279 ms
5,376 KB |
testcase_40 | WA | - |
testcase_41 | AC | 2 ms
5,376 KB |
testcase_42 | WA | - |
testcase_43 | AC | 259 ms
5,376 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; using ll = int64_t; using ld = long double; using ull = unsigned long long; #define ALL(x) x.begin(),x.end() #define rep(iter,from,to) for(ll iter=from;iter<to;++iter) #define fore(variable,container) for(auto& variable:container) #define forc(variable,container) for(auto& variable:container) cout<<variable<<endl; const ll MOD = 1e9 + 7; const ll INF = 1e17; const vector<ll> dx{ 1,0,-1,0 }, dy{ 0,1,0,-1 }; //####################################################################### void op(vector<ll> vec) { ll size = (ll)vec.size(); for (ll i = 0; i < size - 1; ++i) cout << vec[i] << " "; cout << vec.back() << endl; } void op(vector<vector<ll>> vec) { ll height = (ll)vec.size(); ll width = (ll)vec[0].size(); for (ll i = 0; i < height; ++i) { for (ll j = 0; j < width - 1; ++j) cout << vec[i][j] << " "; cout << vec[i].back() << endl; } } void twoText(bool identifier, string outTrue, string outFalse) { if (identifier) cout << outTrue << endl; else cout << outFalse << endl; } void twoText(bool identifier) { if (identifier) cout << "Yes" << endl; else cout << "No" << endl; } template <class T> T vecsum(vector<T>& vec) { return accumulate(ALL(vec), (T)0); } template<class T, ll> T vecsum(vector<T>& vec, ll K) { ll ret = 0; rep(i, 0, K) ret += vec[i]; return ret; } template <class T> struct grid { vector<vector<T>> field; grid(ll height, ll width) { field = vector<vector<T>>(height, vector<T>(width, (T)0)); } void input() { rep(i, 0, field.size()) rep(j, 0, field[i].size()) cin >> field[i][j]; } }; //######################################################################### bool isPrime(ll Num) { ll root = sqrt(Num); if (Num == 0 || Num == 1) return false; for (ll i = 2; i <= root; ++i) if (Num % i == 0) return false; return true; } vector<ll> enumeratePrime(ll maxx) { vector<bool> notp(maxx + 1, false); vector<ll> ret; rep(i, 2, maxx) { if (notp[i]) continue; if (isPrime(i)) ret.emplace_back(i); ll init = 1; while (init * i <= maxx) { notp[init * i] = true; init++; } } return ret; } void solve() { ll N; cin >> N; auto primes = enumeratePrime(N); unordered_set<ll> primeSet; fore(x, primes) primeSet.emplace(x); ll ans = 0; fore(r, primes) { if (r * r > 2 * N) break; rep(i, 0, primes.size()) { ll p = primes[i]; if (p > r * r / 2) break; ll q = r * r - p; if (primeSet.find(q) != primeSet.end()) { if (p == q) ans++; else ans += 2; } } } cout << ans << endl; } int main(void) { std::cin.tie(nullptr); std::ios_base::sync_with_stdio(false); std::cout << std::fixed << std::setprecision(15); solve(); }