1 条题解

  • 1
    @ 2023-3-4 10:17:39

    本蒟蒻的第一道题解 这是一道非常经典的Bash Game,根据结论写代码就行了。 结论很简单:当n是k+1的倍数时后手胜,其余均为先手胜。 代码如下:

    #include<bits/stdc++.h>
    using namespace std;
    int main(){
    	int n,k;
    	cin>>n>>k;
    	if(n%(k+1)==0)cout<<2;
    	else cout<<1;
    	return 0;
    }
    

    非常的简单

    • 1

    信息

    ID
    1516
    时间
    1000ms
    内存
    512MiB
    难度
    8
    标签
    递交数
    16
    已通过
    7
    上传者