結果

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

ソースコード

diff #

#include <bits/stdc++.h>
#define NIL (-1)
#define ll long long
using namespace std;
const int64_t MOD = 1e9 + 7;
const int INF = INT_MAX;
const double PI = acos(-1.0);

int main() {
	ll N;
	cin >> N;
	
	bitset<64> bs(N);
	bool b = 0;
	for (int i = bs.size()-1; i >= 0; i--) {
		if (bs[i]) {
			if (!b) b = 1;
			else bs[i] = 0;
		}
	}

	ll ans = bs.to_ullong();
	cout << ans << endl;
}
0