結果

問題 No.2812 Plus Minus Blackboard
ユーザー umezoumezo
提出日時 2024-07-20 03:52:45
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 540 bytes
コンパイル時間 2,964 ms
コンパイル使用メモリ 250,652 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-20 03:52:51
合計ジャッジ時間 5,550 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 WA -
testcase_04 AC 23 ms
6,944 KB
testcase_05 AC 37 ms
6,944 KB
testcase_06 AC 8 ms
6,948 KB
testcase_07 AC 6 ms
6,944 KB
testcase_08 AC 6 ms
6,940 KB
testcase_09 AC 32 ms
6,940 KB
testcase_10 WA -
testcase_11 AC 21 ms
6,940 KB
testcase_12 AC 17 ms
6,940 KB
testcase_13 AC 39 ms
6,944 KB
testcase_14 AC 11 ms
6,944 KB
testcase_15 AC 5 ms
6,948 KB
testcase_16 AC 35 ms
6,944 KB
testcase_17 WA -
testcase_18 AC 8 ms
6,944 KB
testcase_19 AC 27 ms
6,940 KB
testcase_20 AC 5 ms
6,940 KB
testcase_21 AC 38 ms
6,940 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
template <class T> using V=vector<T>;
template <class T> using VV=V<V<T>>;
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  ll n;
  cin>>n;
  V<ll> A(n);
  ll sum=0;
  rep(i,n){
    cin>>A[i];
    sum+=A[i];
  }
  sort(ALL(A));
  if(A[0]*(sum-A[0])<=0) cout<<"Yes"<<endl;
  else if(A[n-1]*(sum-A[n-1])<=0) cout<<"Yes"<<endl;
  else cout<<"No"<<endl;
    
  return 0;
}
0