Caracal vs Monster
Posted ac-ac
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Caracal vs Monster相关的知识,希望对你有一定的参考价值。
D - Caracal vs Monster
链接
代码实现
#include<bits/stdc++.h> using namespace std; typedef long long ll; int main(void){ ll n; cin >> n; int len = log2(n); ll ans = 1; for(int i = 1; i <= len+1; i++){ ans *= 2; } cout<<ans-1<<endl; return 0; }
以上是关于Caracal vs Monster的主要内容,如果未能解决你的问题,请参考以下文章