結果
問題 | No.3108 徐々におかしくなる数学クイズ |
ユーザー | SnowBeenDiding |
提出日時 | 2024-04-01 22:28:14 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | - |
ソースコード
#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; }