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

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