結果

問題 No.1372 Median of Submasks
ユーザー mmn15277198mmn15277198
提出日時 2021-02-07 01:43:36
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 339 bytes
コンパイル時間 584 ms
コンパイル使用メモリ 68,552 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-03 13:36:27
合計ジャッジ時間 1,508 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;
using ll = long long;

const int sz = 35;

int main(){
    ll n;
    cin >> n;
    ll ans = 1 , now = 1;
    while(n > 0){
        if(n & 1){
            ans = now;
        }
        now *= 2;
        n >>= 1;
    }
    cout << ans << endl;
    return 0;
}

0