标签:
Yougth和Hrdv玩一个游戏,拿出n个石子摆成一圈,Yougth和Hrdv分别从其中取石子,谁先取完者胜,每次可以从中取一个或者相邻两个,Hrdv先取,输出胜利着的名字。
2 3
Hrdv Yougth
1 #include <cstdio> 2 #include <iostream> 3 using namespace std; 4 int main() 5 { 6 int n; 7 while(~scanf("%d", &n)) 8 { 9 if(n < 3) 10 printf("Hrdv\n"); 11 else 12 printf("Yougth\n"); 13 } 14 return 0; 15 }
标签:
原文地址:http://www.cnblogs.com/fengshun/p/4709099.html