Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdbool.h>
- int main()
- {
- int T;
- scanf("%d", &T);
- // Lưu kết quả
- bool ans[T];
- int a, b, c, d;
- int max;
- for (int i = 0; i < T; ++i)
- {
- // Đọc dữ liệu của testcase
- scanf("%d %d %d %d", &a, &b, &c, &d);
- max = (a > b) ? a : b;
- max = (max < c) ? c : max;
- d -= 3*max - (a + b + c);
- if ((d >= 0) && (d % 3 == 0)) ans[i] = true;
- else ans[i] = false;
- }
- // In ra kết quả
- for (int i = 0; i < T; ++i)
- {
- if (ans[i]) printf("YES\n");
- else printf("NO\n");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement