結果
問題 | No.1498 Factorization from -1 to 1 |
ユーザー | square1001 |
提出日時 | 2021-05-04 00:07:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,029 bytes |
コンパイル時間 | 937 ms |
コンパイル使用メモリ | 75,472 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-22 14:07:19 |
合計ジャッジ時間 | 2,006 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,812 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 | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 3 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
#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 = 100; 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); } } for(int i = 0; i < int(ans.size()); ++i) { if(i) cout << ' '; cout << ans[i]; } cout << '\n'; } return 0; }