约瑟夫游戏

廉价感情. 提交于 2019-12-03 17:48:16

 

 

#include<algorithm>
#include<iostream>
#include<cstring>
#include<cstdio>
using namespace std;
long long read(){
	long long a=0,b=1;
	char ch=getchar();
	while(ch<'0'||ch>'9'){
		ch=getchar();
	}
	if(ch=='-'){
		b=-1;
		ch=getchar();
	}
	while(ch>='0'&&ch<='9'){
		a=a*10+ch-'0';
		ch=getchar();
	}
	return a*b;
}
int main(){
	freopen("joseph.in","r",stdin);
	freopen("joseph.out","w",stdout);
	long long n,m;
	n=read(),m=read();
	long long i;
	for(i=1;i<=(n-1)/m;i*=m);
	printf("%lld",((n-i)/(m-1)*m-1)%n+1);
	return 0;
}

  

不开long long就......

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!