记录编号 |
349752 |
评测结果 |
AAAATTTTTT |
题目名称 |
欺负萌新的Rapiz |
最终得分 |
40 |
用户昵称 |
祖国栋梁 |
是否通过 |
未通过 |
代码语言 |
C++ |
运行时间 |
6.862 s |
提交时间 |
2016-11-15 10:55:52 |
内存使用 |
0.28 MiB |
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
typedef long long ll;
int main()
{
freopen("solo.in","r",stdin);
freopen("solo.out","w",stdout);
ll n;
double ans1=0,ans2=0;
cin>>n;
for(int i=0;i<n;i++)
for(int j=0;j<n;j++)
{
ans1=ans1+(double(i&j)/(n*n));
ans2=ans2+(double(i|j)/(n*n));
}
printf("%.6e\n%.6e",ans1,ans2);
return 0;
}