結果

問題 No.1823 Tricolor Dango
ユーザー akasinn
提出日時 2022-01-29 11:32:47
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 327 bytes
コンパイル時間 1,355 ms
コンパイル使用メモリ 161,568 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2025-01-01 18:49:07
合計ジャッジ時間 3,509 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 2 WA * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
  int t,n;
  cin>>t;
  while(t--){
    cin>>n;
    int a,ma=0,sum=0;
    for(int i=0;i<n;i++){ 
      cin>>a;
      ma=max(a,ma);
      sum+=a;
    }
    
    if(sum%3==0 && ma*3<=sum)cout<<"Yes"<<endl;
    else cout<<"No"<<endl;
  }
  return 0;
}
0