摘要: #include<cstdio> int main(){ int a,b,c,t; scanf("%d",&t); while(t--){ scanf("%d%d%d",&a,&b,&c); if((b==9&&c==30)||(b==11&&c==30)||!((b+c)&1))printf("Y 阅读全文
posted @ 2021-08-19 19:23 智人心 阅读(21) 评论(0) 推荐(0)
摘要: #include<iostream> #include<cstring> #include<cstdio> using namespace std; struct Node{ char c; char d[5]; }node[30]; int main(){ char data[30][5] = { 阅读全文
posted @ 2021-08-19 14:45 智人心 阅读(69) 评论(0) 推荐(0)
摘要: #include<iostream> #include<cstdio> #include<cstring> using namespace std; char data[10005][20],t[20],ans[10005][20]; int cnt_ans,count; void cmp(){ i 阅读全文
posted @ 2021-08-19 13:23 智人心 阅读(54) 评论(0) 推荐(0)
摘要: #include<iostream> #include<cstring> #include<cstdio> #include<queue> using namespace std; int ans; int data[10][10],visit[10][10]; struct Node{ int x 阅读全文
posted @ 2021-08-19 01:30 智人心 阅读(31) 评论(0) 推荐(0)