POJ 2773 Happy 2006 G++ 没掌握
程序员文章站
2022-07-15 10:50:55
...
#include <iostream>
#include <algorithm>
#include <cstdio>
using namespace std;
//抄博友程序 没掌握
int gcd(int x,int y)
{
if(y==0)
{
return x;
}
return gcd(y,x%y);
}
int da[1000008];
int a,b;
int main()
{
while(~scanf("%d%d",&a,&b))//抄博友程序
{
//int a,b;
//cin>>a>>b;
//if(cin.eof()==1)
//{
// break;
//}
int js=0;
//for(int i=1;i<a;i++)//抄博友程序 1 1 TLE
for(int i=1;i<=a;i++)//抄博友程序
{
if(gcd(i,a)==1)
{
da[js++]=i;
}
}
/*
for(int i=0;i<js;i++)
{
cout<<da[i]<<" ";
}
cout<<endl;*/
//cout<<da[(b-1)%js]+((b-1)/js)*a<<endl; wa
if(b%js==0)
{
cout<<da[js-1]+(b/js-1)*a<<endl;//抄博友程序 没掌握
}
else
{
cout<<da[b%js-1]+(b/js)*a<<endl;//抄博友程序
}
}
return 0;
}
上一篇: git学习=版本回退
推荐阅读
-
POJ 3600 Subimage Recognition G++ dfs 巧妙 没掌握
-
POJ 1358 Housing Complexes G++ 二分图匹配 没掌握
-
POJ 1708 Game G++ 巧妙 bfs 没掌握
-
POJ 1476 Always On the Run G++ 动态规划dp 巧妙 没掌握
-
POJ 2096 Collecting Bugs G++ 概率dp 没掌握
-
POJ 1472 Instant Complexity G++ 递归 没掌握
-
POJ 1642 Stacking Cubes G++ 巧妙 没掌握
-
POJ 1394 Railroad G++ 例题 巧妙 没掌握
-
POJ 1719 Shooting Contest G++ 二分图匹配 没掌握
-
POJ 1857 To Europe! To Europe! G++ dp 没掌握