結果

問題 No.3108 徐々におかしくなる数学クイズ
ユーザー SnowBeenDidingSnowBeenDiding
提出日時 2024-04-01 22:28:14
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 662 bytes
コンパイル時間 5,117 ms
コンパイル使用メモリ 307,832 KB
実行使用メモリ 6,548 KB
最終ジャッジ日時 2024-04-01 22:28:20
合計ジャッジ時間 5,816 ms
ジャッジサーバーID
(参考情報)
judge10 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
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>

#include <atcoder/all>
#define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++)
using namespace std;
using namespace atcoder;

typedef long long ll;

// n番目の素数
int f(int n) {
    if (n == 1) return 2;
    if (n == 2) return 3;
    int cnt = 2;
    for (int i = 5;; i += 2) {
        bool ok = true;
        for (int j = 3; j * j <= i; j += 2) {
            if (i % j == 0) {
                ok = false;
                break;
            }
        }
        if (ok) {
            cnt++;
            if (cnt == n) return i;
        }
    }
    return -1;
}

int main() {
    int n;
    cin >> n;
    cout << f(n) << endl;
}
0