Start: Jan, 04, 2017 19:40:00
2016年秋季学期程序设计基础期末考试
End: Jan, 04, 2017 21:40:00
Time elapsed:
Time remaining:

Problem_ID: F
Result: Accepted
Time: 1ms
Memory: 1092kB
Author: 2016212402017
In contest: 1084

#include<stdio.h>
#include<math.h>
int main()
{
	int T,x,y,i,j,k,n,h;
	scanf("%d",&T);
	while(T--)
	{
		scanf("%d",&n);
		if(n==1||n==0)
		{
			printf("WA\n");
		}
		else
		{
			if(n%3==0)
			{
				x = 0;
				y = n / 3;
			}
			if(n%3==2)
			{
				x = 1;
				y = n/3;
			}
			if(n%3==1)
			{
				x = 2;
				y = n/3-1;
			}
			printf("%d %d\n",x,y);
		}
	}
	return 0;
}