藜麦小笼包


私信TA

用户名:dotcpp0680909

访问量:858

签 名:

刁常潇

等  级
排  名 299
经  验 5603
参赛次数 0
文章发表 70
年  龄 18
在职情况 学生
学  校 山东管理学院
专  业 软件工程

  自我简介:

一名喜欢走捷径的程序猿

TA的其他文章

#include<bits/stdc++.h>
using namespace std;
#define int long long 
int lowbit(int x)
{
    return x&-x;
}
signed main()
{
   	int n,m,res=0;
   	cin>>n>>m;
   	for(int i=n;i<=m;i++)
   	{
   		int temp=i;
        while(temp!=0)
        {
            temp-=lowbit(temp);
            res++;
        }
	}
    cout<<res<<endl;
    return 0;
}

补充

 

0.0分

0 人评分

  评论区

  • «
  • »