八球胜负 HDU-2537
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
int a,b,n,i;
char ch[1000];
while(scanf("%d",&n)!=eof&&n!=0){
a=0;b=0;
getchar();
gets(ch);
for(i=0;i<=n-1;i++){
if(ch[i]=='r')
a++;
if(ch[i]=='y')
b++;
}
if(a==7&&b==7){
if(ch[n-1]=='b'){
printf("red\n");
}
if(ch[n-1]=='l'){
printf("yellow\n");
}
}
if(a==7&&b!=7){
printf("red\n");
}
if(a!=7&&b==7){
printf("yellow\n");
}
if(a!=7&&b!=7){
if(ch[n-1]=='l'){
printf("red\n");
}
if(ch[n-1]=='b'){
printf("yellow\n");
}
}
}
return 0;
}