結果
問題 | No.1058 素敵な数 |
ユーザー | Strorkis |
提出日時 | 2020-05-22 21:43:43 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 701 bytes |
コンパイル時間 | 733 ms |
コンパイル使用メモリ | 80,396 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-05 16:30:26 |
合計ジャッジ時間 | 1,242 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 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 <iostream> #include <vector> #include <algorithm> int main() { int N; std::cin >> N; const int K = 200000; std::vector<int> u; std::vector<bool> v(K); for (int i = 2; i < K; i++) { if (v[i] == true) continue; if (i > 100000) { u.push_back(i); if (u.size() > 10) break; continue; } for (int j = i; j < K; j += i) { v[j] = true; } } std::vector<long long> w = {1}; for (int i = 0; i < 11; i++) { for (int j = i + 1; j < 11; j++) { w.push_back(1LL * u[i] * u[j]); } } sort(w.begin(), w.end()); std::cout << w[N - 1] << "\n"; }