結果

問題 No.1120 Strange Teacher
ユーザー otamay6otamay6
提出日時 2020-07-22 21:32:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 739 bytes
コンパイル時間 1,448 ms
コンパイル使用メモリ 168,912 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-22 13:56:27
合計ジャッジ時間 3,158 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 7 ms
6,940 KB
testcase_04 AC 54 ms
6,944 KB
testcase_05 AC 54 ms
6,940 KB
testcase_06 AC 54 ms
6,940 KB
testcase_07 AC 53 ms
6,940 KB
testcase_08 AC 53 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 53 ms
6,940 KB
testcase_11 AC 54 ms
6,940 KB
testcase_12 AC 55 ms
6,944 KB
testcase_13 AC 54 ms
6,940 KB
testcase_14 AC 56 ms
6,944 KB
testcase_15 AC 54 ms
6,940 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 60 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 WA -
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 46 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 WA -
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define REP(i,n) for(int i=0,i##_len=int(n);i<i##_len;++i)
#define rep(i,a,b) for(int i=int(a);i<int(b);++i)
#define All(x) (x).begin(),(x).end()
#define rAll(x) (x).rbegin(),(x).rend()
using namespace std;
using ll = long long;

int main(){
    int N;cin>>N;
    ll sumA=0,sumB =0;
    ll ad=0;
    vector<ll> A(N);
    REP(i,N){
        cin>>A[i];
        sumA+=A[i];
    }
    REP(i,N){
        ll b;cin>>b;
        if(b>A[i]){
            ad = max(ad,b-A[i]);
        }
        sumB+=b;
    }
    if(N==2){
        if(sumA==sumB) cout<<ad<<endl;
        else cout<<-1<<endl;
        return 0;
    }
    if((sumA-sumB)%(N-2)==0&&ad <= (sumA-sumB)/(N-2)) cout<<(sumA-sumB)/(N-2)<<endl;
    else cout<<-1<<endl;
}
0