結果
問題 | No.1594 Three Classes |
ユーザー | korogisu |
提出日時 | 2021-07-10 20:40:05 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 159 ms / 2,000 ms |
コード長 | 1,161 bytes |
コンパイル時間 | 1,776 ms |
コンパイル使用メモリ | 172,696 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-16 08:27:37 |
合計ジャッジ時間 | 4,535 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 158 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 155 ms
5,248 KB |
testcase_04 | AC | 154 ms
5,248 KB |
testcase_05 | AC | 156 ms
5,248 KB |
testcase_06 | AC | 159 ms
5,248 KB |
testcase_07 | AC | 157 ms
5,248 KB |
testcase_08 | AC | 157 ms
5,248 KB |
testcase_09 | AC | 157 ms
5,248 KB |
testcase_10 | AC | 153 ms
5,248 KB |
testcase_11 | AC | 155 ms
5,248 KB |
testcase_12 | AC | 158 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 157 ms
5,248 KB |
testcase_15 | AC | 159 ms
5,248 KB |
testcase_16 | AC | 53 ms
5,248 KB |
testcase_17 | AC | 159 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | AC | 7 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i, n) for (int i = 0; i < (int)(n); i++) #define RREP(i, n) for (int i = (int)(n); i >= 0; i--) #define rep(i, a, n) for (int i = (a); i < (int)(n); i++) #define rrep(i, a, n) for (int i = (a); i >= (int)(n); i--) #define ALL(obj) (obj).begin(), (obj).end() #define rALL(obj) (obj).rbegin(), (obj).rend() using ll = long long; using vi = vector<int>; using vii = vector<vector<int>>; using P = pair<int, int>; int N; vector<int> E; string tenToThree(int E) { string three = ""; REP(i,N) { three = to_string(E%3) + three; E /= 3; } return three; } int main() { cin >> N; E.resize(N); for (int i = 0; i < N; i++) cin >> E[i]; int n = pow(3,N); bool ans = false; REP(i,n) { int A = 0, B = 0, C = 0; // 3進数に変換 string T = tenToThree(i); REP(j,N) { char p = T[j]; if(p == '0') A += E[j]; if(p == '1') B += E[j]; if(p == '2') C += E[j]; } if(A == B && B == C) ans = true; } cout << (ans ? "Yes" : "No") << endl; return 0; }