結果
問題 | No.1058 素敵な数 |
ユーザー | Rubikun |
提出日時 | 2020-05-22 21:25:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,266 bytes |
コンパイル時間 | 1,532 ms |
コンパイル使用メモリ | 175,332 KB |
実行使用メモリ | 13,932 KB |
最終ジャッジ日時 | 2024-10-05 14:51:27 |
合計ジャッジ時間 | 2,441 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
11,760 KB |
testcase_01 | AC | 51 ms
11,760 KB |
testcase_02 | AC | 52 ms
12,012 KB |
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; typedef long long ll; template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; } #define all(x) (x).begin(),(x).end() #define fi first #define se second #define mp make_pair #define si(x) int(x.size()) const int mod=1000000007,MAX=200005,INF=1<<30; vector<int> prime;//i番目の素数 bool is_prime[MAX+1]; void sieve(int n){ for(int i=0;i<=n;i++){ is_prime[i]=true; } is_prime[0]=is_prime[1]=false; for(int i=2;i<=n;i++){ if(is_prime[i]){ prime.push_back(i); for(int j=2*i;j<=n;j+=i){ is_prime[j] = false; } } } } int main(){ std::ifstream in("text.txt"); std::cin.rdbuf(in.rdbuf()); cin.tie(0); ios::sync_with_stdio(false); sieve(MAX-3); vector<ll> X,ans; for(int i=100001;i<=110000;i++){ if(is_prime[i]) X.push_back(i); } for(ll a:X){ for(ll b:X){ ans.push_back(a*b); } } sort(all(ans)); int N;cin>>N; N-=2; if(N<0) cout<<1<<endl; else cout<<ans[N]<<endl; }