結果

問題 No.589 Counting Even
ユーザー Mister
提出日時 2020-08-19 00:40:36
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 534 ms
コンパイル使用メモリ 65,280 KB
最終ジャッジ日時 2025-01-13 03:34:50
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using lint = long long;

void solve() {
    lint n;
    std::cin >> n;

    std::cout << n + 1 - (1LL << __builtin_popcountll(n)) << "\n";
}

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

    solve();

    return 0;
}
0