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: 6ms
Memory: 1120kB
Author: CT12812531281
In contest: 1281

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