标签:nyoj 558 一二三
3 owe too theee
1 2 3
AC码:
#include<stdio.h> #include<string.h> int main() { int T,len; char str[7]; scanf("%d",&T); while(T--) { scanf("%s",str); len=strlen(str); if(len>3) printf("3\n"); else { if((str[0]==‘o‘&&str[1]==‘n‘)||(str[0]==‘o‘&&str[2]==‘e‘)||(str[1]==‘n‘&&str[2]==‘e‘)) printf("1\n"); else printf("2\n"); } } return 0; }
hdu-3487-Play with Chain (Splay tree)
标签:nyoj 558 一二三
原文地址:http://blog.csdn.net/rowanhaoa/article/details/24603033