結果

問題 No.1058 素敵な数
ユーザー rogi52rogi52
提出日時 2020-11-23 02:30:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 585 bytes
コンパイル時間 1,720 ms
コンパイル使用メモリ 166,380 KB
実行使用メモリ 4,500 KB
最終ジャッジ日時 2023-09-30 23:15:49
合計ジャッジ時間 2,614 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
4,376 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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
typedef long long ll;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);

    int N; cin >> N;

    vector<bool> c(505050,false);
    c[0] = true;
    for(int i=2;i<=100000;i++){
        if(c[i]) continue;
        int j = i;
        while(j  < 505050){
            c[j] = true;
            j += i;
        }
    }

    rep(i,505050){
        if(!c[i]){
            N--;
            if(N == 0){
                cout << i << endl;
                return 0;
            }
        }
    }
}
0