首页 > 代码库 > 位运算/CodeForces 485c Bits
位运算/CodeForces 485c Bits
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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。