记录编号 242891 评测结果 AAAAAAAAAA
题目名称 倒水 最终得分 100
用户昵称 GravatarSky_miner 是否通过 通过
代码语言 C++ 运行时间 0.000 s
提交时间 2016-03-28 16:53:00 内存使用 0.00 MiB
显示代码纯文本
#include<cstdio>
namespace cat{
	int work(int x){
		int t=0;
		while( x > 0 ){
			x = x - ( x & -x );
			t++;
		}
		return t;
	}
	int dooaaa(){
		#define doo
		#ifdef doo
			freopen("watera.in","r",stdin);
			freopen("watera.out","w",stdout);
		#endif
		int n,k;scanf("%d%d",&n,&k);
		int ans = 0;
		while( work(n) > k ){
			ans += (n & -n);
			n = n + (n & -n) ;
		}
		printf("%d",ans);
		#ifdef doo
			fclose(stdin);fclose(stdout);
		#endif
		return 0;
	}
}
int ttt = cat::dooaaa() ; 
int main(){;}