結果
問題 | No.983 Convolution |
ユーザー | やむなく |
提出日時 | 2020-02-11 15:23:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,009 bytes |
コンパイル時間 | 1,566 ms |
コンパイル使用メモリ | 171,296 KB |
実行使用メモリ | 7,432 KB |
最終ジャッジ日時 | 2024-10-01 07:53:53 |
合計ジャッジ時間 | 3,171 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
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 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 22 ms
5,376 KB |
testcase_24 | AC | 7 ms
5,248 KB |
testcase_25 | AC | 6 ms
5,248 KB |
testcase_26 | AC | 14 ms
5,248 KB |
testcase_27 | AC | 11 ms
5,248 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 1 ms
5,248 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
ソースコード
// // Created by yamunaku on 2020/02/11. // #include <bits/stdc++.h> using namespace std; #define rep(i, n) for(int i = 0; i < (n); i++) #define repl(i, l, r) for(int i = (l); i < (r); i++) #define per(i, n) for(int i = ((n)-1); i >= 0; i--) #define perl(i, l, r) for(int i = ((r)-1); i >= (l); i--) #define all(x) (x).begin(),(x).end() #define MOD9 998244353 #define MOD1 1000000007 #define IINF 1000000000 #define LINF 1000000000000000000 #define SP <<" "<< #define CYES cout<<"Yes"<<endl #define CNO cout<<"No"<<endl #define CFS cin.tie(0);ios::sync_with_stdio(false) #define CST(x) cout<<fixed<<setprecision(x) using ll = long long; using ld = long double; using vi = vector<int>; using mti = vector<vector<int>>; using vl = vector<ll>; using mtl = vector<vector<ll>>; using pi = pair<int, int>; using pl = pair<ll, ll>; template<typename T> using heap = priority_queue<T, vector<T>, function<bool(const T, const T)>>; ll gcd(__uint128_t x, __uint128_t y){ if(y == 0) return x; ll sz; while(x % y){ sz = x % y; x = y; y = sz; } return y; } int main(){ // CFS; int n; cin >> n; int lg = 0, sz = 1; while(n > sz) lg++, sz *= 2; vector<__uint128_t> a(sz, 0); ll y = 0; rep(i, n){ ll x; cin >> x; a[i] = x; if(a[i] == -1){ y |= i; a[i] = 0; } } if(y==sz-1){ cout << -1 << endl; return 0; } rep(t, lg){ rep(i, sz){ if((i & (1 << t)) == 0){ a[i] += a[i ^ (1 << t)]; } } } rep(i, sz){ a[i] = a[i] * a[i]; } rep(t, lg){ rep(i, sz){ if((i & (1 << t)) == 0){ a[i] -= a[i ^ (1 << t)]; } } } __uint128_t ans = a[0]; repl(i, 1, n){ ans = gcd(ans, a[i]); } ll ans2 = ans; if(ans2 == 0) cout << -1 << endl; else cout << ans2 << endl; return 0; }