結果
問題 | No.1120 Strange Teacher |
ユーザー | mot |
提出日時 | 2020-07-23 02:11:45 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,157 bytes |
コンパイル時間 | 1,061 ms |
コンパイル使用メモリ | 83,080 KB |
実行使用メモリ | 5,760 KB |
最終ジャッジ日時 | 2024-06-23 05:35:05 |
合計ジャッジ時間 | 3,529 ms |
ジャッジサーバーID (参考情報) |
judge5 / 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 | AC | 9 ms
5,376 KB |
testcase_04 | AC | 65 ms
5,760 KB |
testcase_05 | AC | 65 ms
5,760 KB |
testcase_06 | AC | 66 ms
5,760 KB |
testcase_07 | AC | 65 ms
5,760 KB |
testcase_08 | AC | 66 ms
5,760 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 65 ms
5,376 KB |
testcase_11 | AC | 66 ms
5,376 KB |
testcase_12 | AC | 65 ms
5,376 KB |
testcase_13 | AC | 64 ms
5,376 KB |
testcase_14 | AC | 64 ms
5,376 KB |
testcase_15 | AC | 63 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 72 ms
5,760 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 56 ms
5,760 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 1 ms
5,376 KB |
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<iomanip> #include<cmath> #include<string> #include<cstring> #include<vector> #include<list> #include<algorithm> #include<map> #include<set> #include<queue> #include<stack> using namespace std; typedef long long ll; #define fi first #define se second #define mp make_pair #define rep(i, n) for(int i=0;i<n;++i) #define rrep(i, n) for(int i=n;i>=0;--i) const int inf=1e9+7; const ll mod=1e9+7; const ll big=1e18; const double PI=2*asin(1); int main() { ll N; cin>>N; ll A[N], B[N]; ll suma = 0, sumb = 0; for(ll i=0;i<N;++i) { cin>>A[i]; suma += A[i]; } for(ll i=0;i<N;++i) { cin>>B[i]; sumb += B[i]; } if(N==2) { if(suma!=sumb) cout<<-1<<endl; else cout<<abs(A[0]-B[0])<<endl; return 0; } if((suma-sumb)%(N-2)!=0 || suma<sumb) { cout<<-1<<endl; return 0; } ll M = (suma-sumb)/(N-2); ll u[N]; bool can = true; ll sumu = 0; for(ll i=0;i<N;++i) { if((B[i]-A[i]+M)%2!=0) { can = false; break; } u[i] = (B[i]-A[i]+M)/2; sumu += u[i]; } if(sumu!=M) can = false; if(!can) { cout<<-1<<endl; return 0; } cout<<M<<endl; }