记录编号 |
348764 |
评测结果 |
AAAATTTTTT |
题目名称 |
欺负萌新的Rapiz |
最终得分 |
40 |
用户昵称 |
Tabing010102 |
是否通过 |
未通过 |
代码语言 |
C++ |
运行时间 |
6.773 s |
提交时间 |
2016-11-14 16:10:47 |
内存使用 |
0.29 MiB |
显示代码纯文本
#include <cstdio>
using namespace std;
typedef long long LL;
FILE *fin, *fout;
double qwy, qwh;
LL n;
int main() {
fin = fopen("solo.in", "r");
fout = fopen("solo.out", "w");
fscanf(fin, "%lld", &n);
for(LL i = 0; i < n; i++) {
for(LL j = 0; j < n; j++) {
qwy += i&j;
qwh += i|j;
}
}
qwy /= (double)n*n;
qwh /= (double)n*n;
fprintf(fout, "%.6e\n%.6e\n", qwy, qwh);
return 0;
}