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

Codeforces Round #368 (Div. 2)

时间:2016-09-01 02:12:49      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

A

技术分享
#include <iostream>
#include <vector>
#include <queue>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cctype>
#include <algorithm>
#include <map>
#include <set>
#include <cmath>
using namespace std;
typedef unsigned long long ull;
char a[105][105];
int main()
{
 //freopen("input.txt","r",stdin);
 //freopen("output.txt","w",stdout);
   int n,m;
   char c;
   scanf("%d %d",&n,&m);
   for(int i=0;i<n;i++)
   for(int j=0;j<m;j++)
   {
    scanf("%c",&c);
    if(c>=65)
    a[i][j]=c;
    else
    j--;
   }
   int pop=0;
   for(int i=0;i<=n&&pop==0;i++)
  {
   for(int j=0;j<m&&pop==0;j++)
   {
    if(i==n)
    {
     printf("#Black&White");
     pop=1;
     break;
    }
    if(a[i][j]!=W&&a[i][j]!=B&&a[i][j]!=G)
    {
     printf("#Color");
     pop=1;
    }
   }
  }
 //fclose(stdin);
 //fclose(stdout);
}
View Code

B

Codeforces Round #368 (Div. 2)

标签:

原文地址:http://www.cnblogs.com/Aragaki/p/5828138.html

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