結果

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

ソースコード

diff #


    #include<bits/stdc++.h>
// #include<atcoder/all>
using namespace std;
// using namespace atcoder;
using lint = long long;
using graph = vector<vector<int>>;
#define endl '\n'
lint const mod = 1e9+7;
//long const mod = 998244353;


int main(){
    
    lint n;
    cin >> n;
    int bit = 0;
    for(lint bitt = 1LL<<60;bitt>=1;bitt/=2){
        if(bitt & n){
            cout << bitt << endl;
            return 0;
        }
    }
}

0