记录编号 |
28021 |
评测结果 |
AAAAAAAAAA |
题目名称 |
奇怪的函数 |
最终得分 |
100 |
用户昵称 |
Makazeu |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.002 s |
提交时间 |
2011-10-10 22:13:32 |
内存使用 |
0.27 MiB |
显示代码纯文本
#include <fstream>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
using namespace std;
ifstream fin("xx.in");
ofstream fout("xx.out");
int main()
{
long long n,left,right,mid;
fin>>n;
left=1;
right=n+1;
while (left<right)
{
mid=(left+right)/2;
if (floor(mid*log(double(mid))/log(double(10)))+1<n)
left=mid+1;
else
right=mid;
}
fout<<left;
fin.close();
fout.close();
return 0;
}