#include <iostream>
#include <cstring>
#include <algorithm>
#include<cmath>
using namespace std;
int main()
{
int n;
while(scanf("%d",&n),n){
if(n<1960)puts("0");
else{
int bits = 4<<((n-1960)/10);
double t=0;
int k=1;
//cout<<(n-1960)%10<<endl;
while(t<=bits){
k++;
t+=log2(k);
}
printf("%d\n",k-1);
}
}
}
ZOJ 2545
最新推荐文章于 2024-11-17 15:19:52 发布