結果
問題 | No.1058 素敵な数 |
ユーザー | snow39 |
提出日時 | 2020-05-22 22:17:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 28 ms / 2,000 ms |
コード長 | 997 bytes |
コンパイル時間 | 1,032 ms |
コンパイル使用メモリ | 101,304 KB |
実行使用メモリ | 9,380 KB |
最終ジャッジ日時 | 2024-10-05 18:09:44 |
合計ジャッジ時間 | 1,690 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 27 ms
8,864 KB |
testcase_02 | AC | 28 ms
8,608 KB |
testcase_03 | AC | 26 ms
7,844 KB |
testcase_04 | AC | 26 ms
8,356 KB |
testcase_05 | AC | 27 ms
9,120 KB |
testcase_06 | AC | 27 ms
8,100 KB |
testcase_07 | AC | 27 ms
8,224 KB |
testcase_08 | AC | 25 ms
9,380 KB |
testcase_09 | AC | 25 ms
8,868 KB |
ソースコード
#include <iostream> #include <algorithm> #include <string> #include <vector> #include <cmath> #include <map> #include <queue> #include <iomanip> #include <set> #include <tuple> #define mkp make_pair #define mkt make_tuple #define rep(i,n) for(int i = 0; i < (n); ++i) using namespace std; typedef long long ll; const ll MOD=1e9+7; template<class T> void chmin(T &a,const T &b){if(a>b) a=b;} template<class T> void chmax(T &a,const T &b){if(a<b) a=b;} const int L=110000; const int D=1e5; int main(){ cin.tie(0); ios::sync_with_stdio(false); int N; cin>>N; if(N==1){ cout<<1<<endl; return 0; } vector<int> isprime(L+1,1); vector<ll> primes; for(ll i=2;i<=L;i++){ if(isprime[i]==0) continue; if(i>D) primes.push_back(i); for(ll j=2;i*j<=L;j++) isprime[i*j]=0; } N--; vector<ll> v; for(int i=0;i<primes.size();i++) for(int j=i;j<primes.size();j++) v.push_back(primes[i]*primes[j]); sort(v.begin(),v.end()); cout<<v[N-1]<<endl; return 0; }