結果
問題 | No.1498 Factorization from -1 to 1 |
ユーザー | square1001 |
提出日時 | 2021-05-04 00:09:15 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,052 bytes |
コンパイル時間 | 808 ms |
コンパイル使用メモリ | 74,708 KB |
実行使用メモリ | 19,072 KB |
最終ジャッジ日時 | 2024-07-22 14:08:35 |
合計ジャッジ時間 | 9,275 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
#include <vector> #include <iostream> #include <algorithm> #pragma GCC target("avx") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") using namespace std; const int limit = 100000; bool isprime[100009]; vector<int> factors[100009]; int main() { fill(isprime + 2, isprime + limit + 1, true); for(int i = 2; i <= limit; ++i) { if(!isprime[i]) continue; for(int j = i * 2; j <= limit; j += i) { isprime[j] = false; } } for(int i = 2; i <= limit; ++i) { if(!isprime[i]) continue; for(int j = 1; j <= i; ++j) { if((1LL * j * j + 1) % i == 0) { for(int k = j; k <= limit; k += i) { factors[k].push_back(i); } } } } cin.tie(0); ios_base::sync_with_stdio(false); int Q; cin >> Q; while(Q--) { int v; cin >> v; long long A = 1LL * v * v + 1; vector<int> ans; for(int i : factors[v]) { while(A % i == 0) { A /= i; ans.push_back(i); } } ans.push_back(A); for(int i = 0; i < int(ans.size()); ++i) { if(i) cout << ' '; cout << ans[i]; } cout << '\n'; } return 0; }