AtCoder Beginner Contest 173 B Judge Status Summary 雷同字符串数量统计

AtCoder Beginner Contest 173   比赛人数10755  比赛开始后6分钟看到所有题

AtCoder Beginner Contest 173   B   Judge Status Summary    雷同字符串数量统计

总目录详见https://blog.csdn.net/mrcrack/article/details/104454762

在线测评地址https://atcoder.jp/contests/abc173/tasks/abc173_b

题目大意:给出一些字符串,统计雷同的字符串数量。

基本思路:因每种字符串首字母都不同,故统计首字母数量即可。

#include 
#include 
char s[10];
int a,w,t,r;
int main(){
	int n,i;
	scanf("%d",&n);
	while(n--){
		scanf("%s",s);
		if(s[0]=='A')a++;//统计首字母数量
		else if(s[0]=='W')w++;
		else if(s[0]=='T')t++;
		else if(s[0]=='R')r++;
	}
	printf("AC x %d\n",a);
	printf("WA x %d\n",w);
	printf("TLE x %d\n",t);
	printf("RE x %d\n",r);
	return 0;
}

 

你可能感兴趣的:(atcoder)