結果
問題 | No.1058 素敵な数 |
ユーザー | risujiroh |
提出日時 | 2020-05-22 22:27:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,053 bytes |
コンパイル時間 | 2,599 ms |
コンパイル使用メモリ | 211,592 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-05 18:35:54 |
合計ジャッジ時間 | 2,711 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #ifdef LOCAL #include "debug.h" #else #define DEBUG(...) #endif vector<int> sieve(int n) { vector<bool> b(n / 3 + 1, true); vector<int> res{2, 3}; for (int p = 5, d = 4; p * p <= n; p += d = 6 - d) if (b[p / 3]) for (int i = p * p, di = p % 3 * 2 * p; i <= n; i += di = 6 * p - di) b[i / 3] = false; for (int p = 5, d = 4; p <= n; p += d = 6 - d) if(b[p / 3]) res.push_back(p); while (not res.empty() and res.back() > n) res.pop_back(); return res; } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); auto ps = sieve(2e5); int s = lower_bound(begin(ps), end(ps), (int)1e5) - begin(ps); vector<long long> v; for (int bt = 0; bt < 1 << 10; ++bt) { if (__builtin_popcount(bt) >= 3) continue; if (__builtin_popcount(bt) == 1) continue; auto t = 1LL; for (int i = 0; i < 10; ++i) { if (bt >> i & 1) { t *= ps[s + i]; } } v.push_back(t); } sort(begin(v), end(v)); int n; cin >> n; --n; cout << v[n] << '\n'; }