码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 4642 Fliping game

时间:2017-02-23 22:45:29      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:main   include   name   color   cstring   pre   stream   pac   ping   

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<algorithm>
 5 
 6 using namespace std;
 7 
 8 int n,m;
 9 
10 int main(){
11 
12 
13 
14     int t;
15     scanf("%d",&t);
16     while(t--){
17         scanf("%d%d",&n,&m);
18         int x;
19         for(int i=0;i<n;i++)
20             for(int j=0;j<m;j++)
21                 scanf("%d",&x);
22         if(x)
23             puts("Alice");
24         else
25             puts("Bob");
26     }
27     return 0;
28 }

 

HDU 4642 Fliping game

标签:main   include   name   color   cstring   pre   stream   pac   ping   

原文地址:http://www.cnblogs.com/NWUACM/p/6435894.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!