結果
問題 | No.1120 Strange Teacher |
ユーザー | kotatsugame |
提出日時 | 2020-07-22 21:27:27 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 64 ms / 1,000 ms |
コード長 | 549 bytes |
コンパイル時間 | 618 ms |
コンパイル使用メモリ | 66,116 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-22 13:22:54 |
合計ジャッジ時間 | 2,712 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 27 |
コンパイルメッセージ
main.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 6 | main() | ^~~~
ソースコード
#include<iostream> using namespace std; int N; int A[1<<17],B[1<<17]; long SA,SB; main() { cin>>N; for(int i=0;i<N;i++) { cin>>A[i]; SA+=A[i]; } for(int i=0;i<N;i++) { cin>>B[i]; SB+=B[i]; } if(N==2) { cout<<(SA==SB?A[0]<B[0]?B[0]-A[0]:A[0]-B[0]:-1)<<endl; return 0; } if((SA-SB)%(N-2)!=0) { cout<<-1<<endl; return 0; } long T=(SA-SB)/(N-2); long X=0; for(int i=0;i<N;i++) { A[i]-=T; if(A[i]<=B[i]&&(B[i]-A[i])%2==0)X+=(B[i]-A[i])/2; else { cout<<-1<<endl; return 0; } } cout<<(X==T?T:-1)<<endl; }