結果
| 問題 | No.2853 A + B Problem |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-08-25 13:42:29 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 16 ms / 2,000 ms |
| コード長 | 415 bytes |
| 記録 | |
| コンパイル時間 | 1,003 ms |
| コンパイル使用メモリ | 211,728 KB |
| 実行使用メモリ | 16,256 KB |
| 最終ジャッジ日時 | 2026-07-05 12:45:34 |
| 合計ジャッジ時間 | 2,614 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 30 |
ソースコード
#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
using namespace std;
int main() {
cin.tie(0); cout.tie(0);
ios::sync_with_stdio(false);
long long N;
cin >> N;
int cnt = 0;
for(int i = 0; i < 60; i++) {
cnt += (N >> i & 1 ? 1 : 0);
}
long long ans = 1;
for(int i = 0; i < cnt; i++) {
ans *= 2;
}
ans -= 2;
cout << ans << '\n';
return 0;
}