1. 程式人生 > >【HDU1846】Brave Game(博弈論)

【HDU1846】Brave Game(博弈論)

href math clas main pac lin sin tdi namespace

題面

HDU

題解

\(Bash\ Game\)模板題

#include<iostream>
using namespace std;
int T,n,m;
int main()
{
    ios::sync_with_stdio(false);
    cin>>T;
    while(T--)
    {
        cin>>n>>m;
        if(n%(m+1))cout<<"first"<<endl;
        else cout<<"second"<<endl;
    }
    return 0;
}

【HDU1846】Brave Game(博弈論)