結果
問題 | No.1120 Strange Teacher |
ユーザー | bachoppi |
提出日時 | 2020-07-22 22:28:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,229 bytes |
コンパイル時間 | 956 ms |
コンパイル使用メモリ | 99,520 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-22 23:04:22 |
合計ジャッジ時間 | 4,236 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 63 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 69 ms
5,376 KB |
testcase_11 | AC | 69 ms
5,376 KB |
testcase_12 | AC | 69 ms
5,376 KB |
testcase_13 | AC | 67 ms
5,376 KB |
testcase_14 | AC | 66 ms
5,376 KB |
testcase_15 | AC | 63 ms
5,376 KB |
testcase_16 | AC | 64 ms
5,376 KB |
testcase_17 | AC | 63 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 68 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | WA | - |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | WA | - |
testcase_25 | AC | 1 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
ソースコード
#include<iostream> #include <cstring> #include<string> #include<algorithm> #include<vector> #include<iomanip> #include<math.h> #include<complex> #include<queue> #include<deque> #include<stack> #include<map> #include<set> #include<bitset> #include<functional> #include<assert.h> #include<numeric> using namespace std; #define REP(i,m,n) for(int i=(int)(m) ; i < (int) (n) ; ++i ) #define rep(i,n) REP(i,0,n) using ll = long long; typedef pair<int,int> pint; typedef pair<ll,int> pli; const int inf=1e9+7; const ll longinf=1LL<<60 ; const ll mod=1e9+7 ; int main(){ int n; cin >> n; int a[n], b[n], sa[n]; rep(i, n){ cin >> a[i]; } rep(i, n){ cin >> b[i]; } int sum = 0; rep(i, n){ sa[i] = a[i]-b[i]; sum+=sa[i]; } if(n==2){ if(sum!=0) cout << -1 << endl; else cout << sa[0] << endl; return 0; } bool can = true; if(sum%(n-2)!=0) can = false; //cout << can << endl; rep(i, n-1){ if(abs(sa[i])%2!=abs(sa[i+1])%2) can=false; } sort(sa, sa+n, greater<>()); int kai[n]; kai[0] = 0; int k = 0; rep(i, n-1){ kai[i+1] = kai[i]+(sa[i]-sa[i+1])/2; k+=kai[i+1]; } if(k>sum/(n-2)) can=false; if(can) cout << sum/(n-2) << endl; else cout << -1 << endl; }