Start: Jul, 05, 2019 08:40:00
2019年度暑期短学期达标测试
End: Jul, 05, 2019 11:40:00
Time elapsed:
Time remaining:

Problem_ID: I
Result: Accepted
Time: 5ms
Memory: 1120kB
Author: CT12812191281
In contest: 1281

#include <stdio.h>
#include <math.h>
int main(){
	int t;
	scanf("%d",&t);
	while(t>0){
		t--;
		int n,end=0;
		scanf("%d",&n);
		for(int i=1;i<=n;i++){
			if(i%3==1) end+=1;
			if(i%3==2) end+=1;
		}
		end=end%3;
		printf("%d\n",end);
	}
	
	
	
	return 0;
}