結果

問題 No.1120 Strange Teacher
ユーザー 👑 potato167potato167
提出日時 2023-04-11 17:42:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 73 ms / 1,000 ms
コード長 614 bytes
コンパイル時間 2,265 ms
コンパイル使用メモリ 196,320 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-16 15:00:53
合計ジャッジ時間 5,056 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 8 ms
5,376 KB
testcase_04 AC 65 ms
5,376 KB
testcase_05 AC 65 ms
5,376 KB
testcase_06 AC 64 ms
5,376 KB
testcase_07 AC 65 ms
5,376 KB
testcase_08 AC 65 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 67 ms
5,376 KB
testcase_11 AC 66 ms
5,376 KB
testcase_12 AC 66 ms
5,376 KB
testcase_13 AC 65 ms
5,376 KB
testcase_14 AC 64 ms
5,376 KB
testcase_15 AC 65 ms
5,376 KB
testcase_16 AC 65 ms
5,376 KB
testcase_17 AC 66 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 73 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 55 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 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
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for(int i=a;i<b;i++)
using ll = long long;
#define all(p) p.begin(),p.end()

int main(){
	int N;
	cin>>N;
	vector<ll> A(N),B(N);
	rep(i,0,N) cin>>A[i];
	rep(i,0,N) cin>>B[i];
	if(N==2){
		if(A[0]+A[1]==B[0]+B[1]){
			cout<<abs(A[0]-B[0])<<"\n";
		}
		else{
			cout<<"-1\n";
		}
	}
	else{
		ll sum=0;
		rep(i,0,N) sum+=A[i];
		rep(i,0,N) sum-=B[i];
		if(sum%(N-2)!=0){
			cout<<"-1\n";
			return 0;
		}
		ll ans=sum/(N-2);
		rep(i,0,N){
			A[i]-=ans;
			if(B[i]<A[i]||(B[i]-A[i])%2!=0){
				cout<<"-1\n";
				return 0;
			}
		}
		cout<<ans<<"\n";
	}
}
0