結果
問題 | No.1058 素敵な数 |
ユーザー | jupiro |
提出日時 | 2020-07-10 15:57:33 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 30 ms / 2,000 ms |
コード長 | 1,720 bytes |
コンパイル時間 | 1,604 ms |
コンパイル使用メモリ | 140,220 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-10 22:33:16 |
合計ジャッジ時間 | 2,563 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
6,816 KB |
testcase_01 | AC | 30 ms
6,816 KB |
testcase_02 | AC | 29 ms
6,816 KB |
testcase_03 | AC | 29 ms
6,816 KB |
testcase_04 | AC | 29 ms
6,816 KB |
testcase_05 | AC | 29 ms
6,816 KB |
testcase_06 | AC | 30 ms
6,816 KB |
testcase_07 | AC | 30 ms
6,820 KB |
testcase_08 | AC | 29 ms
6,816 KB |
testcase_09 | AC | 30 ms
6,820 KB |
ソースコード
#include <cstdio> #include <iostream> #include <string> #include <sstream> #include <stack> #include <algorithm> #include <cmath> #include <queue> #include <map> #include <set> #include <cstdlib> #include <bitset> #include <tuple> #include <assert.h> #include <deque> #include <bitset> #include <iomanip> #include <limits> #include <chrono> #include <random> #include <array> #include <unordered_map> #include <functional> #include <complex> #include <numeric> template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } constexpr long long MAX = 5100000; constexpr long long INF = 1LL << 60; constexpr int inf = 1000000007; constexpr long long mod = 1000000007LL; //constexpr long long mod = 998244353LL; const long double PI = acos((long double)(-1)); using namespace std; typedef unsigned long long ull; typedef long long ll; typedef long double ld; vector<bool> isprime; void eratos(ll n) { isprime.resize(n + 1); for (ll i = 0; i <= n; i++) { isprime[i] = true; } isprime[0] = false; isprime[1] = false; for (ll i = 2; i * i <= n; i++) { if (isprime[i]) { ll j = i + i; while (j <= n) { isprime[j] = false; j = j + i; } } } } int main() { /* cin.tie(nullptr); ios::sync_with_stdio(false); */ eratos(MAX); vector<ll> v; for (int i = 100001;; i++) { if (isprime[i]) v.push_back(i); if (v.size() > 10) break; } vector<ll> t; t.push_back(1); for (auto p : v) { for (auto q : v) { t.push_back(p * q); } } sort(t.begin(), t.end()); t.erase(unique(t.begin(), t.end()), t.end()); int n; cin >> n; cout << t[n - 1] << endl; return 0; }