delete pics to save space

This commit is contained in:
2023-08-03 09:22:52 +08:00
commit de60cd6ed4
1334 changed files with 66221 additions and 0 deletions

17
1.2759.cpp Normal file
View File

@ -0,0 +1,17 @@
#include<cstdio>
#include<cmath>
#include<algorithm>
using namespace std;
int L=1,R=2000000000,M,res=2000000000,n;
int main()
{
scanf("%d",&n); n--;
while(L<=R)
{
M=(L+R)>>1;
if(M*log10(M)>=(double)n) res=M,R=M-1;
else L=M+1;
}
printf("%d\n",res);
return 0;
}