結果
問題 |
No.1823 Tricolor Dango
|
ユーザー |
|
提出日時 | 2022-01-29 11:22:04 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 562 bytes |
コンパイル時間 | 3,133 ms |
コンパイル使用メモリ | 168,920 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2025-01-01 18:09:40 |
合計ジャッジ時間 | 4,653 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 9 WA * 16 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef int64_t ll; int main() { int t,n,a,b,c; cin>>t; while(t--){ cin>>n; priority_queue<int> pq; for(int i=0;i<n;i++){ cin>>a; pq.push(a); } for(int i=0;i<n-3;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(); pq.pop(); b=pq.top(); pq.pop(); c=pq.top(); if(a==b && b==c)cout<<"Yes"<<endl; else cout<<"No"<<endl; } return 0; }