結果
問題 | No.3035 2018 |
ユーザー | kurenai3110 |
提出日時 | 2018-04-01 23:43:36 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 812 bytes |
コンパイル時間 | 614 ms |
コンパイル使用メモリ | 61,280 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-06-26 06:13:15 |
合計ジャッジ時間 | 4,131 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
#include <iostream> #include <vector> using namespace std; int main() { int N; cin >> N; int cnt = 0; for (int i = 2;; i++) { int x = i; vector<pair<int, int>>primes; for (int j = 2; j*j <= x; j++) { if (x%j == 0) { int c = 0; while (x%j == 0) { x /= j; c++; } primes.push_back(make_pair(j, c)); } } if (x != 1)primes.push_back(make_pair(x, 1)); bool flag = true; if (primes.size()>2)flag = false; if (primes.size() == 1) { if (primes[0].second == 3) { cnt++; if (cnt == N) { cout << i << endl; break; } } flag = false; } if (flag == false)continue; if (!(primes[0].second == 1 && primes[1].second == 1))flag = false; if (flag) { cnt++; if (cnt == N) { cout << i << endl; break; } } } return 0; }