結果

問題 No.1058 素敵な数
ユーザー kappybarkappybar
提出日時 2020-05-22 21:33:25
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 6 ms / 2,000 ms
コード長 824 bytes
コンパイル時間 1,907 ms
コンパイル使用メモリ 171,388 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-15 16:03:44
合計ジャッジ時間 2,140 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 5 ms
5,376 KB
testcase_02 AC 5 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 5 ms
5,376 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 6 ms
5,376 KB
testcase_08 AC 6 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(int)(n);i++)
using namespace std;
using ll = long long ;
using P = pair<int,int> ;
using pll = pair<long long,long long>;
constexpr int INF = 1e9;
constexpr long long LINF = 1e17;
constexpr int MOD = 1000000007;
int C = 100000;

bool prime(ll i){
    for(ll j=2;j*j<=i;j++){
        if(i%j==0) return false;
    }
    return true;
}


int main(){
    int n;
    cin >> n;
    if(n==1){
        cout << 1 << endl;
        return 0;
    }


    vector<ll> p;
    rep(i,100)rep(j,100){
        ll a = C + i + 1;
        ll b = C + j + 1;
        if(prime(a) && prime(b)){
            p.push_back(a*b);
        }
    }
    sort(p.begin(),p.end());
    p.erase(unique(p.begin(),p.end()),p.end());
    //cout << p.size() << endl;
    cout << p[n-2] << endl;
    return 0;
}
0