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

位运算/CodeForces 485c Bits

时间:2014-11-09 12:29:05      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   sp   for   div   on   log   

 1 /*
 2     PROBLEM:CF 485C
 3     AUTHER:Nicole
 4     MEMO:位运算 二进制
 5 */
 6 #include<cstdio>
 7 int main()
 8 {
 9     int n;
10     scanf("%d",&n);
11     for (int i=1;i<=n;i++)
12     {
13         long long l,r;
14         scanf("%lld%lld",&l,&r);
15         long long x=1;
16         while (l<=r)
17         {
18             long long temp=l|x;
19             if (temp>r) break;
20             l=temp;
21             x=x<<1;
22         }
23         printf("%lld\n",l);
24     }
25     return 0;
26 }

 

位运算/CodeForces 485c Bits

标签:style   blog   io   color   sp   for   div   on   log   

原文地址:http://www.cnblogs.com/NicoleLam/p/4084704.html

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