結果
問題 | No.1058 素敵な数 |
ユーザー | sahiya |
提出日時 | 2021-03-02 17:09:51 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,260 bytes |
コンパイル時間 | 1,690 ms |
コンパイル使用メモリ | 117,172 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-03 01:52:20 |
合計ジャッジ時間 | 2,441 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 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 | - |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include <algorithm> #include <bitset> #include <climits> #include <cmath> #include <cstring> #include <deque> #include <forward_list> #include <iomanip> #include <iostream> #include <list> #include <map> #include <queue> #include <set> #include <string> #include <unordered_map> #include <unordered_set> #include <utility> #include <vector> using namespace std; typedef long long ll; typedef pair<int, int> P; typedef bitset<16> BS; const ll MOD = 1E+09 + 7; const ll INF = 1E15; const int MAX_N = 1E+05; int N; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cin >> N; vector<ll> prm = { 100003, 100019, 100043, 100049, 100057, 100069, 100103, 100109, 100129, 100151 }; vector<ll> res = { 1 }; for (int i = 0; i < prm.size(); i++) { for (int j = i + 1; j < prm.size(); j++) { res.push_back(prm[i] * prm[j]); } } sort(res.begin(), res.end()); /* for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { cout << "i = " << i << ", j = " << j << ", dp = " << dp[i][j] << "\n"; } } */ cout << res[N - 1] << "\n"; return 0; }