HDU 1846 (巴什博弈)

题目:http://acm.hdu.edu.cn/showproblem.php?pid=1846

代码:

#include <stdio.h>
#include <string.h>
#include <algorithm>
using namespace std;

int main()
{
    int t,n,m;
    scanf("%d",&t);
    while(t--)
    {
        scanf("%d%d",&n,&m);
        if(n%(m+1))
            printf("first\n");
        else
            printf("second\n");
    }

    return 0;
}


你可能感兴趣的:(HDU 1846 (巴什博弈))