基准时间限制:1 秒 空间限制:131072 KB 分值: 20
难度:3级算法题
正整数k的倒数1/k,写为10进制的小数如果为无限循环小数,则存在一个循环节,求<=n的数中,倒数循环节长度最长的那个数,假如存在多个最优的答案,输出所有答案中最大的那个数。
1/6= 0.1(6) 循环节长度为1
1/7= 0.(142857) 循环节长度为6
1/9= 0.(1) 循环节长度为1
Input
输入n(10 <= n <= 1000)
Output
输出<=n的数中倒数循环节长度最长的那个数
Input示例
10
Output示例
7
= =模拟除法。
找循环节
循环节的找法是,找到重复的数
因为除法中。除数确定,所以遇到重复数的话是一个效果
#include <iostream>
#include <algorithm>
#include <cmath>
#include <cstring>
#include <map>
#include <queue>
#include <iomanip>
#include <cstdio>
#include <algorithm>
using namespace std;
int d[1000000];
int res(int x)
{
int k=1;
int l=1;
memset(d,0,sizeof(d));
while(1)
{
k=k*10;
k=k%x;
//cout<<k<<' '<<x<<' '<<d[k]<<endl;
d[k]++;
l++;
if(d[k]==2||k==0) break;
}
return l;
}
int main()
{
int n;
while(cin>>n)
{
int maxs=0,maxx=0;
for(int i=1;i<=n;i++)
{
// cout<<res(i)<<' '<<i<<endl;
if(res(i)>maxs)
{
maxs=res(i);
maxx=i;
}
}
cout<<maxx<<endl;
}
}