結果
問題 |
No.2343 (l+r)/2
|
ユーザー |
|
提出日時 | 2023-06-09 21:01:11 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 316 bytes |
コンパイル時間 | 1,579 ms |
コンパイル使用メモリ | 160,248 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2025-01-02 01:41:34 |
合計ジャッジ時間 | 2,940 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 1 |
other | AC * 4 WA * 10 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long int32_t main() { ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0); int t;cin>>t; while(t--) { int n;cin>>n;int x=0;for(int i=0;i<n;++i) {int o;cin>>o;x+=o;} puts(2*x==n ? "Yes" : "No"); } return 0; }