結果
問題 | No.1823 Tricolor Dango |
ユーザー |
|
提出日時 | 2022-01-29 11:41:47 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 86 ms / 2,000 ms |
コード長 | 326 bytes |
コンパイル時間 | 1,258 ms |
コンパイル使用メモリ | 160,908 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2025-01-01 19:05:20 |
合計ジャッジ時間 | 3,424 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 25 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef int64_t ll; int main() { int t,n; cin>>t; while(t--){ cin>>n; ll 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; }