結果

問題 No.2853 A + B Problem
ユーザー t98slidert98slider
提出日時 2024-08-25 13:37:15
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 2,017 ms
コンパイル使用メモリ 200,792 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-25 13:37:20
合計ジャッジ時間 2,977 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

long long intpow(long long a, long long b){ 
    long long ans = 1; 
    while(b){ 
        if(b & 1) ans *= a; 
        a *= a; 
        b >>= 1; 
    } 
    return ans;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    ll n;
    cin >> n;
    ll b = __builtin_popcountll(n);
    if(b <= 1){
        cout << 0 << '\n';
        return 0;
    }
    cout << intpow(2, b) - 2 << '\n';
}
0