結果
| 問題 | 
                            No.1823 Tricolor Dango
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2022-01-29 12:00:22 | 
| 言語 | C++14  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 499 bytes | 
| コンパイル時間 | 1,535 ms | 
| コンパイル使用メモリ | 166,372 KB | 
| 実行使用メモリ | 6,820 KB | 
| 最終ジャッジ日時 | 2025-01-01 20:05:01 | 
| 合計ジャッジ時間 | 3,890 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 | 
| other | AC * 9 WA * 16 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef int64_t ll;
int main() {
  int t,n;
  ll a,b,c;
  cin>>t;
  while(t--){
    cin>>n;
    priority_queue<ll> pq;
    for(int i=0;i<n;i++){ 
      cin>>a;
      pq.push(a);
    }
    for(int i=0;i<n-2;i++){ 
      a=pq.top();
      pq.pop();
      b=pq.top();
      pq.pop();
      c=pq.top();
      pq.pop();
      pq.push(a-c);
      pq.push(b-c);
    }
    a=pq.top();
    if(a==0)cout<<"Yes"<<endl;
    else cout<<"No"<<endl;
  }
  return 0;
}