結果
問題 | No.1594 Three Classes |
ユーザー |
|
提出日時 | 2021-07-09 23:00:17 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 29 ms / 2,000 ms |
コード長 | 730 bytes |
コンパイル時間 | 2,399 ms |
コンパイル使用メモリ | 195,180 KB |
最終ジャッジ日時 | 2025-01-22 22:29:44 |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 18 |
ソースコード
#include <bits/stdc++.h>using namespace std;int main(void) {int n;cin>>n;std::vector<int> v(n);for (auto &i : v) cin>>i;int s = accumulate(v.begin(), v.end(), 0);if (s % 3) {puts("No");return 0;}int x = 1;for (int i = 0; i < n; ++i) x*=3;for (int i = 0; i < x; ++i) {int t = i;vector<int> a(3);for (int j = 0; j < n; ++j) {a[t % 3] += v[j];t /= 3;}bool flg = true;for (int j = 0; j < 3; ++j) {flg &= a[j] == s / 3;}if (flg) {puts("Yes");return 0;}}puts("No");return 0;}