結果

問題 No.1372 Median of Submasks
ユーザー sten_sansten_san
提出日時 2021-02-05 21:31:22
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 764 bytes
コンパイル時間 1,960 ms
コンパイル使用メモリ 191,988 KB
最終ジャッジ日時 2025-01-18 12:00:11
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

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

struct uns_t {} uns;
template <typename Element, typename Head, typename ...Args>
auto vec(Element init, Head arg, Args ...args) {
    if constexpr (sizeof...(Args) == 0) return std::vector(arg, init);
    else return std::vector(arg, vec(init, args...));
}
template <typename Element, typename Head, typename ...Args>
auto vec(uns_t, Head arg, Args ...args) {
    return vec(Element(), arg, args...);
}

int main() {
    int64_t n; cin >> n;
    int64_t m = int64_t(1) << (bitset<64>(n).count() - 1);

    int64_t ans = 0, cnt = 0;
    for (int i = 0; i < 64; ++i) {
        if (!(n & (int64_t(1) << i))) continue;
        ans |= !!(m & (int64_t(1) << cnt++)) * (int64_t(1) << i);
    }

    cout << ans << endl;
}

0