码迷,mamicode.com
首页 > 其他好文 > 详细

neerc1

时间:2016-10-27 23:35:45      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:cin   cst   turn   span   include   return   tput   str   nbsp   

无耻的暴力

#include<iostream>
#include<cstdio>
using namespace std;
int n;
int main()
{
    freopen("input.txt","r",stdin);
    freopen("output.txt","w",stdout);
    cin>>n;
    int l=500000000;
    for(int i=0;i<=l;i++)
    {
        if(((i*2)^i)==n)
        {
            cout<<i*2<<endl;
            return 0;
        }
        if(((i*2+1)^i)==n)
        {
            cout<<i*2+1<<endl;
            return 0;
        }
    }
    fclose(stdin);
    fclose(stdout);
    return 0;
}

 

neerc1

标签:cin   cst   turn   span   include   return   tput   str   nbsp   

原文地址:http://www.cnblogs.com/19992147orz/p/6005917.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!