codeforces 484A bits
程序员文章站
2022-04-04 20:04:31
...
添加链接描述
bitmasks
太强了太强了太强了,二进制收下我的膝盖!
#include<bits/stdc++.h>
using namespace std;
int main()
{
int t;
cin >> t;
while (t--) {
long long a, b, k;
cin >> a >> b;
k = a;
for (int i = 0; i < 64; i++) {
a |= 1ll<< i; //把a的第 i 位(从右数起bai) 置1 相当于 a= a | (1ll<<i);
if (a > b) // |= &= 和+= -= 一样,运算一样
break;
else if (a > k)
k = a;
}
cout << k << "\n";
}
/*
long long a;
a = 1LL << 60; //注意:这里LL 或者 ll 都是把int转化成long long, 只能写LL 或ll,而且位置必须固定在这里
cout << a << "\n";
*/
return 0;
}
上一篇: python怎么用pip安装库
下一篇: LINUX平台防火墙iptables原理
推荐阅读
-
Codeforces Round #595 (Div. 3)D1D2 贪心 STL
-
『ACM C++』 Codeforces | 1066B - Heaters
-
『ACM C++』 Codeforces | 1003C - Intense Heat
-
Codeforces 939A题,B题(水题)
-
CodeForces 29D Ant on the Tree
-
Codeforces Global Round 9-C. Element Extermination
-
codeforces 712B Memory and Trident
-
CodeForces 962D Merge Equals
-
Codeforces Round #655 (Div. 2) A. Omkar and Completion
-
CodeForces 1326E - Bombs