您的位置:首页 > 其它

Codeforces 630 B. Moore's Law

2016-04-09 20:19 375 查看
B. Moore's Law

time limit per test
0.5 seconds

memory limit per test
64 megabytes

input
standard input

output
standard output

The city administration of IT City decided to fix up a symbol of scientific and technical progress in the city's main square, namely an indicator board that shows the effect of Moore's law in real time.

Moore's law is the observation that the number of transistors in a dense integrated circuit doubles approximately every 24 months. The implication
of Moore's law is that computer performance as function of time increases exponentially as well.

You are to prepare information that will change every second to display on the indicator board. Let's assume that every second the number of transistors increases exactly 1.000000011 times.

Input

The only line of the input contains a pair of integers n (1000 ≤ n ≤ 10 000)
and t (0 ≤ t ≤ 2 000 000 000) —
the number of transistors in the initial time and the number of seconds passed since the initial time.

Output

Output one number — the estimate of the number of transistors in a dence integrated circuit in t seconds since the initial time. The
relative error of your answer should not be greater than 10 - 6.

Examples

input
1000 1000000


output
1011.060722383550382782399454922040


#include <iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<vector>
using namespace std;
__int64 rec[32]={0};
int main()
{
int t;
__int64 n,sum;
for(int i=0;i<32;++i)
rec[i]=pow(2,i);
scanf("%d",&t);
while(t--)
{
int i;
sum=0;
scanf("%I64d",&n);
for(i=0;i<32;++i)
{
if(n<rec[i])
break;
sum+=rec[i];
}
sum=n*(n+1)/2-2*sum;
printf("%I64d\n",sum);
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: