結果
問題 | No.1058 素敵な数 |
ユーザー | polyester |
提出日時 | 2020-05-22 23:53:24 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,278 bytes |
コンパイル時間 | 953 ms |
コンパイル使用メモリ | 92,564 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-05 22:23:10 |
合計ジャッジ時間 | 1,540 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 6 ms
5,248 KB |
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 <algorithm> #include <cmath> #include <cstdio> #include <functional> #include <iostream> #include <map> #include <numeric> #include <queue> #include <set> #include <stack> #include <string> #include <vector> using namespace std; using ll = long long; vector<bool> IsPrime; void sieve(ll max) { if(max + 1 > IsPrime.size()) { // resizeで要素数が減らないように IsPrime.resize(max + 1, true); // IsPrimeに必要な要素数を確保 } IsPrime[0] = false; // 0は素数ではない IsPrime[1] = false; // 1は素数ではない for(ll i = 2; i * i <= max; ++i) { // 0からsqrt(max)まで調べる if(IsPrime[i]) { // iが素数ならば for(ll j = 2; i * j <= max; ++j) { // (max以下の)iの倍数は IsPrime[i * j] = false; // 素数ではない } } } } int main() { ll n; cin >> n; if(n == 1) { cout << 1 << endl; } else { int cnt = 0; vector<ll> ans; int a = 100000; sieve(1000000); while(cnt < 1) { if(IsPrime[a]) { cnt++; ans.push_back(a); } a++; } ll s = 1; for(int i = 0; i < n; i++) { s *= ans[0]; } // cout << s << endl; cout << ans[0] * ans[0] << endl; } return 0; }