0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 11:05:25 +00:00
OI-codes/CodeForces/1605/A/A.cpp

19 lines
289 B
C++
Raw Normal View History

#include <bits/stdc++.h>
using namespace std;
int t, a1, a2, a3;
int main() {
cin >> t;
while (t--) {
cin >> a1 >> a2 >> a3;
if ((a1 + a2 + a3) % 3) {
cout << 1 << endl;
} else {
cout << 0 << endl;
}
}
return 0;
}