結果

問題 No.2812 Plus Minus Blackboard
ユーザー Jo JoJo Jo
提出日時 2024-07-22 14:39:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 695 bytes
コンパイル時間 663 ms
コンパイル使用メモリ 65,384 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-22 14:39:58
合計ジャッジ時間 3,751 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 RE -
testcase_04 AC 40 ms
6,940 KB
testcase_05 RE -
testcase_06 AC 14 ms
6,944 KB
testcase_07 AC 11 ms
6,940 KB
testcase_08 AC 8 ms
6,940 KB
testcase_09 RE -
testcase_10 AC 7 ms
6,940 KB
testcase_11 AC 38 ms
6,948 KB
testcase_12 AC 30 ms
6,944 KB
testcase_13 RE -
testcase_14 AC 20 ms
6,944 KB
testcase_15 AC 8 ms
6,940 KB
testcase_16 RE -
testcase_17 AC 19 ms
6,940 KB
testcase_18 AC 13 ms
6,940 KB
testcase_19 RE -
testcase_20 AC 8 ms
6,944 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;
int a[110010],ma=-1e9,mi=1e9;
int main(){
    int n; cin>>n;
    int sum1=0,sum2=0;
    for(int i=1;i<=n;i++) {
        cin >> a[i];
        if(a[i]<=0) sum1+=abs(a[i]),sum2-=abs(a[i]);
        if(a[i]>=0) sum1-=a[i],sum2+=a[i];
        ma=max(ma,a[i]);
        mi=min(mi,a[i]);
    }
    if(mi > 0 || ma < 0){
        cout <<"No"<< endl;
        return 0;
    } 
    if(sum1 > 0){
        if(sum1<=abs(mi)){
            cout<<"Yes"<<endl;
        } else {
            cout<<"No"<<endl;
        }
    }
    if(sum2 > 0){
        if(sum2 <= ma){
            cout<<"Yes"<<endl;
        } else {
            cout<<"Yes"<<endl;
        }
    }
    return 0;
}
0