1095c专题

1095C - Powers Of Two(二进制)

一些基础的二进制 #include<bits/stdc++.h>using namespace std;int n ,k , a[105], tot, sum ;int main(){cin >> n >> k;int x = n;while(x){a[++tot] = x&1;x>>=1;if(a[tot]) sum++;}while(sum < k){if(tot == 1) bre