1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
| #include<cctype> #include<cmath> #include<cstdio> #include<cstring> #include<algorithm> #include<iostream> #include<string> #include<queue> #include<stack> #include<set> #include<map> #define CLEAR(a) memset((a),0,sizeof((a)))
using namespace std;
typedef long long LL; const double pi = acos(-1.0); const int maxn=1e4; const int inf=99999999; const double eps=1e-3;
int month[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};
int ans(int x) {
if (x==-1) return 6; if (x==0) return 5; if (x==1) return 6; if (x==2) return 9; if (x==3) return 6; if (x==4) return 5; if (x==5) return 5; if (x==6) return 5; if (x==7) return 5; if (x==8) return 6; }
int isleap(int y) { if ((y%4==0&&y%100!=0) || y%400==0) return 366; else return 365; }
int fun(int y,int m) { if (m==2) { if ((y%4==0&&y%100!=0) || y%400==0) return 29; else return 28; } else return month[m]; }
int main() { int T; scanf("%d",&T); while(T--) { int y; scanf("%d",&y); int day=0; for(int i=1928;i<y;i++) day+=isleap(i); for(int i=1;i<=4;i++) day+=fun(y,i); day+=1; cout<<ans(day%7)<<endl;
} return 0; }
|