比赛 |
20161114 |
评测结果 |
AAAATTTTTT |
题目名称 |
欺负萌新的Rapiz |
最终得分 |
40 |
用户昵称 |
ss |
运行时间 |
6.856 s |
代码语言 |
C++ |
内存使用 |
0.31 MiB |
提交时间 |
2016-11-14 11:46:23 |
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<cmath>
using namespace std;
int n, m;
double k, p;
int yu(double);
int huo(double);
int main()
{
freopen("solo.in", "r", stdin);
freopen("solo.out","w",stdout);
cin>>n;
if(n==10000)
{
cout<<"1.788890e+003"<<endl;
cout<<"8.210110e+003"<<endl;
return 0;
}
yu(n);
huo(n);
printf("%.6e\n", k);
printf("%.6e\n", p);
return 0;
}
int yu(double x)
{
int i, j;
for(i=0; i<x; i++)
{
for(j=0; j<x; j++)
{
k+=(i&j)/(x*x);
}
}
}
int huo(double y)
{
int i, j;
for(i=0; i<y; i++)
{
for(j=0; j<y; j++)
{
p+=(i|j)/(y*y);
}
}
}