int (int n,int m)//0则必输,否则返回第一次取走的数 { if(n%(m+1)==0) return 0; return n%(m+1); }
博弈论
原文:https://www.cnblogs.com/wzl19981116/p/9365568.html