結果

問題 No.1058 素敵な数
ユーザー horoyoisawahoroyoisawa
提出日時 2022-02-03 09:06:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 724 bytes
コンパイル時間 1,490 ms
コンパイル使用メモリ 174,508 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-02 03:05:15
合計ジャッジ時間 2,121 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int si = 100100;
    vector<bool> prime(si, true);
    for(int i=2;i<si;i++) {
        if(prime[i]) {
            for(int j=i+i;j<si;j+=i) {
                prime[j] = false;
            }
        }
    }

    vector<long long> primes;
    for(int i=100001;i<si;i++) {
        if(primes.size() == 10) break;
        if(prime[i]) primes.emplace_back(i);
    }

    vector<long long> ans = {1};

    for(int i=0;i<primes.size();i++) {
        for(int j=i;j<primes.size();j++) {
            ans.emplace_back(primes[i] * primes[j]);
        }
    }

    sort(ans.begin(), ans.end());

    int n;
    cin >> n;
    n--;

    cout << ans[n] << endl;

    return 0;
}
0