0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 11:25:24 +00:00
OI-codes/Luogu/problem/CF1551A/CF1551A.cpp
2021-07-24 08:35:43 +08:00

21 lines
391 B
C++

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