这次是真的憋屈,第一题罚时40次+但是确实很简单.猜也能猜出来
这次用积分求一下. ss
求出期望就是a*π+2*b;
此处是直接小数点后截取6位.。。printf和cout 用setprecision都是四舍五入,可以用floor.
#include <iostream>
#include <string>
#include <cstring>
#include <stdio.h>
#include <math.h>
#include <iomanip>
#include <map>
#define sd(qwe) scanf("%d",&qwe)
#define se(cvb) scanf("%lf",&cvb)
#define ss(asd) scanf("%s",asd)
#define sc(xcv) scanf("%c",&xcv)
#define xh(ert,rty,tyu) for(int ert=rty;ert<=tyu;ert++)
#define fxh(u,i,o) for(int u=i;u>=o;u--)
using namespace std;
int main()
{int k;sd(k);
while(k--)
{
double a,b;se(a);se(b);
double pi=acos(-1.0);
double ans=(double)((long long)((pi*a)*1e6))/1000000.0+2*b;
printf("%.6lf\n",ans);
}
return 0;
}