結果
問題 | No.1058 素敵な数 |
ユーザー | heno239 |
提出日時 | 2020-05-23 01:28:12 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,244 bytes |
コンパイル時間 | 1,077 ms |
コンパイル使用メモリ | 111,624 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-06 04:18:35 |
合計ジャッジ時間 | 1,945 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
5,248 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<iostream> #include<string> #include<cstdio> #include<vector> #include<cmath> #include<algorithm> #include<functional> #include<iomanip> #include<queue> #include<ciso646> #include<utility> #include<map> #include<set> #include<bitset> #include<stack> #include<cassert> #include<random> #include<unordered_map> #include<numeric> using namespace std; #define rep(i,n) for(int i=0;i<n;i++) #define per(i,n) for(int i=n-1;i>=0;i--) #define all(v) (v).begin(),(v).end() #define stop char nyaa;cin>>nyaa; using P = pair<int, int>; using ll = long long; using LP = pair<ll, ll>; const ll inf = 1000000007; const ll INF = inf * inf; bool isp(int x) { int k = sqrt(x + 0.1); for (int j = 2; j <= k + 1; j++) { if (j != x) { if (x%j == 0)return false; } } return true; } void solve() { int n; cin >> n; vector<int> anss; anss.push_back(1); int cur = 100000; while (anss.size() < 10) { bool valid = true; if (!isp(cur))valid = false; for (int i = 2; i <= 100000; i++) { if (cur%i == 0)valid = false; } if (valid)anss.push_back(cur); cur++; } cout << anss[n - 1] << "\n"; } signed main() { cin.tie(0); ios::sync_with_stdio(false); //int t; cin >> t;rep(i, t)solve(); solve(); //stop return 0; }