結果
問題 | No.1498 Factorization from -1 to 1 |
ユーザー | tko919 |
提出日時 | 2021-05-04 11:27:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,090 bytes |
コンパイル時間 | 2,302 ms |
コンパイル使用メモリ | 210,088 KB |
実行使用メモリ | 23,584 KB |
最終ジャッジ日時 | 2024-07-23 02:04:08 |
合計ジャッジ時間 | 8,492 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 101 ms
23,244 KB |
testcase_01 | AC | 103 ms
23,404 KB |
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 | AC | 110 ms
23,412 KB |
testcase_11 | AC | 102 ms
23,508 KB |
testcase_12 | AC | 102 ms
23,540 KB |
testcase_13 | AC | 107 ms
23,484 KB |
testcase_14 | AC | 103 ms
23,368 KB |
testcase_15 | AC | 95 ms
23,384 KB |
testcase_16 | AC | 101 ms
23,368 KB |
testcase_17 | WA | - |
testcase_18 | AC | 109 ms
23,388 KB |
testcase_19 | AC | 104 ms
23,488 KB |
testcase_20 | AC | 97 ms
23,472 KB |
testcase_21 | AC | 94 ms
23,456 KB |
testcase_22 | AC | 101 ms
23,400 KB |
ソースコード
#define _USE_MATH_DEFINES #include <bits/stdc++.h> using namespace std; //template #define rep(i,a,b) for(int i=(int)(a);i<(int)(b);i++) #define ALL(v) (v).begin(),(v).end() using ll=long long int; const int inf = 0x3fffffff; const ll INF = 0x1fffffffffffffff; const double eps=1e-12; template<typename T>inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;} template<typename T>inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;} //end const int L=101010; ll a[L]; map<int,int> ds[L]; int main(){ rep(x,1,L)a[x]=1LL*x*x+1; rep(x,1,L)if(a[x]!=1){ ll p=a[x]; for(ll y=x;y<L;y+=p){ while(a[y]%p==0){ a[y]/=p; ds[y][p]++; } } for(ll y=p-x;y<L;y+=p){ while(a[y]%p==0){ a[y]/=p; ds[y][p]++; } } } int q; cin>>q; while(q--){ int x; cin>>x; vector<int> res; for(auto& [p,c]:ds[x]){ rep(_,0,c)res.push_back(p); } rep(i,0,res.size())cout<<res[i]<<(i==(int)res.size()-1?'\n':' '); } return 0; }