結果
問題 | No.1058 素敵な数 |
ユーザー | 山下 |
提出日時 | 2020-05-22 21:31:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 690 bytes |
コンパイル時間 | 1,638 ms |
コンパイル使用メモリ | 167,724 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-05 15:30:36 |
合計ジャッジ時間 | 2,149 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 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 | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long int ll; ll mod = 1000000007; double pi = 3.14159265358979; ll r(ll x, ll y) { if (y == 0) return 1; else if (y % 2 == 0) return r(x, y/2) * r(x, y/2) % mod; else return x * r(x, (y-1)/2) % mod * r(x, (y-1)/2) % mod; } int main() { int n; cin >> n; if (n==1) cout << 1 <<endl; else { int k = 1; int p = 0; for (int i = 100001; i < 1000000; i++) { bool f = 1; for (int j = 2; j < 100001; j++) { if (i%j==0) { f = 0; break; } } if (f) k++; if (k == n && k != 1) { p = i; break; } } cout << p <<endl; } }