結果
| 問題 |
No.8108 徐々におかしくなる数学クイズ
|
| コンテスト | |
| ユーザー |
SnowBeenDiding
|
| 提出日時 | 2024-04-01 22:28:14 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 662 bytes |
| コンパイル時間 | 5,084 ms |
| コンパイル使用メモリ | 306,872 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-09-30 22:34:30 |
| 合計ジャッジ時間 | 5,280 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 10 |
ソースコード
#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;
}
SnowBeenDiding