比赛 20161114 评测结果 AAAATTTTTT
题目名称 欺负萌新的Rapiz 最终得分 40
用户昵称 jmisnal 运行时间 6.132 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2016-11-14 11:37:46
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <cmath>
using namespace std;
void fj(int x)
{
	while(x)
	{
		cout<<x%2<<' ';
		x/=2;
	}
}
int n;
double andh,huo,c;
int main()
{
//	freopen("abcd.in","r",stdin);
	freopen("solo.in","r",stdin);
	freopen("solo.out","w",stdout);
	cin>>n;
	for(int i=0;i<n;i++)
	{
		for(int j=0;j<n;j++)
		{
		//	if(i==j)continue;
			andh=andh+(i&j);
			huo=huo+(i|j);
			c++;
		}
	}

	double sb=(double)andh/c,sd=(double)huo/c;
	printf("%.6e\n%.6e",sb,sd);
/*	for(int i=1;i<=30;i++)
	{
		cout<<i<<' ';
		if(i<10)cout<<' ';
		fj(i);
		cout<<endl;
	}
	return 0;
	for(int i=1;i<=30;i++)
	{
		cout<<i<<':';
		for(int j=i+1;j<=30;j++)
			cout<<(i&j)<<' ';
		cout<<endl;
	}
*/
	return 0;
}