結果
問題 | No.589 Counting Even |
ユーザー |
|
提出日時 | 2017-11-04 11:15:20 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 634 bytes |
コンパイル時間 | 2,377 ms |
コンパイル使用メモリ | 157,412 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-23 05:39:10 |
合計ジャッジ時間 | 3,373 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 29 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define REP(i,n) FOR(i,0,n) #define FOR(i,a,b) for(ll i=a;i<b;i++) #define PB push_back #define LB lower_bound #define UB upper_bound #define PQ priority_queue #define UM unordered_map #define ALL(a) (a).begin(),(a).end() typedef vector<ll> vi; typedef vector<vector<ll>> vvi; const ll INF = (1ll << 30); typedef pair<ll,ll> pii; struct Edge{ ll s,t,c; }; typedef vector<vector<Edge>> Graph; typedef vector<pii> vpii; ll bitCount(ll a){ ll cnt=0; while(a) {cnt+=(a%2); a/=2;} return cnt; } int main() { ll N; cin>>N; cout<<N+1-(1ll<<bitCount(N))<<endl; }