結果

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

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <list>
#include <set>
#include <unordered_set>
#include <map>
#include <unordered_map>
#include <cmath>
#include <utility>
#include <sstream>
#include <queue>
#include <queue>

using namespace std;

int main() {
  ios_base::sync_with_stdio(false);
  cin.tie(nullptr);

  int64_t n;
  cin >> n;
  int popcnt = 0;
  while (n > 0LL) {
    if (n & 1LL == 1LL) {
      ++popcnt;
    }
    n >>= 1LL;
  }
  int64_t ans = (1LL << popcnt) - 2LL;
  cout << ans << endl;
  return 0;
}
0