比赛 20120316 评测结果 TAAAAAAATA
题目名称 求和B 最终得分 80
用户昵称 Czb。 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2012-03-16 22:23:21
显示代码纯文本
#include<stdio.h>
#include<string.h>
#define max(a,b) a>b?a:b

typedef long long Int;

Int n,m,q,ans,len,num[100];

void Add(Int x)
{
	Int l=0;
	while(x)
	{
		l++;
		num[l]+=x%m;
		x/=m;
	}
	len=max(l,len);
}

Int pow(Int a,Int y)
{
	Int i,tmp=1;
	for(i=1;i<=y;i++)tmp*=a;
	return tmp;
}

void solve()
{
	for(int i=1;i<=len;i++)
	{
		ans+=num[i]*pow(m,i-1);
	}
}

int main()
{
	freopen("sumb.in","r",stdin);
	freopen("sumb.out","w",stdout);
	Int i,x,y;
	scanf("%lld",&q);
	while(q--)
	{
		len=0;
		memset(num,0,sizeof(num));
		scanf("%lld%lld",&n,&m);
		ans=0;
		while(n--)
		{
			x=y=0;
			scanf("%lld%lld",&x,&y);
			for(i=x;i<=y;i++)
			{
				Add(i);
			}
		}
		for(i=1;i<=len;i++)
		{
			num[i]%=m;
		}
		solve();
		printf("%lld\n",ans);
	}
	return 0;
}