https://beta.atcoder.jp/contests/code-festival-2018-quala/tasks/code_festival_2018_quala_a
解法
https://beta.atcoder.jp/contests/code-festival-2018-quala/submissions/3242821
問題で示されているパターンをすべて試そう。
三重ループで表現すると楽。
int A, B, C, S; //--------------------------------------------------------------------------------------------------- void _main() { cin >> A >> B >> C >> S; rep(a, 0, 2) rep(b, 0, 2) rep(c, 0, 2) { if (A + B + C + a + b + c == S) { printf("Yes\n"); return; } } printf("No\n"); }