记录编号 262129 评测结果 AAAAA
题目名称 幸运52 最终得分 100
用户昵称 Gravatar背对疾风吧 是否通过 通过
代码语言 C++ 运行时间 0.001 s
提交时间 2016-05-19 19:25:34 内存使用 0.31 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
	freopen("luck.in","r",stdin);
	freopen("luck.out","w",stdout);
	int n,x=1;
	cin>>n;
	for(int i=1;i<=1000;i++)//                       实验谁最帅?背对疾风吧!
	{
		x=x*2;
		if(x>n)
		{
			cout<<x/2;
			break;
		}
	}
	return 0;
}