码迷,mamicode.com
首页 > 移动开发 > 详细

【小米oj】 反向位整数

时间:2019-05-05 19:23:54      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:--   \n   反向   long   style   typedef   模拟   color   stdout   

模拟

 1 #define mm(a) memset(a,0,sizeof(a));
 2 #define max(x,y) (x)>(y)?(x):(y)
 3 #define min(x,y) (x)<(y)?(x):(y)
 4 #define Fopen freopen("1.in","r",stdin); freopen("m.out","w",stdout);
 5 #define rep(i,a,b) for(int i=(a);i<=(b);i++)
 6 #define per(i,b,a) for(int i=(b);i>=(a);i--)
 7 #include<bits/stdc++.h>
 8 typedef long long ll;
 9 #define PII pair<ll,ll>
10 using namespace std;
11 const int INF=0x3f3f3f3f;
12 const int MAXN=(int)2e5 + 5;
13 const ll mod=1e9+7;
14 
15 
16 char s[MAXN];
17 unsigned int n;
18 
19 int main()
20 {
21     ll ans=0;
22     scanf("%u",&n);
23 
24     for(int i=0;i<32;i++){
25         ans<<=1;
26         if(n&(1<<i))ans|=1;
27     }
28     printf("%lld\n",ans);
29     return 0;
30 }

 

【小米oj】 反向位整数

标签:--   \n   反向   long   style   typedef   模拟   color   stdout   

原文地址:https://www.cnblogs.com/dogenya/p/10815605.html

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