【Codeforces Round 272 (Div 2)C】【暴力】Dreamoon and Sums 所有除b结果是模b结果[1,a]倍数字之和

C. Dreamoon and Sums
time limit per test
1.5 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Dreamoon loves summing up something for no reason. One day he obtains two integers a and b occasionally. He wants to calculate the sum of all nice integers. Positive integer x is called nice if  and , where k is some integer number in range[1, a].

By  we denote the quotient of integer division of x and y. By  we denote the remainder of integer division of x andy. You can read more about these operations here: http://goo.gl/AcsXhT.

The answer may be large, so please print its remainder modulo 1 000 000 007 (109 + 7). Can you compute it faster than Dreamoon?

Input

The single line of the input contains two integers ab (1 ≤ a, b ≤ 107).

Output

Print a single integer representing the answer modulo 1 000 000 007 (109 + 7).

Sample test(s)
input
1 1
output
0
input
2 2
output
8
Note

For the first sample, there are no nice integers because  is always zero.

For the second sample, the set of nice integers is {3, 5}.


#include<stdio.h>
#include<iostream>
#include<string.h>
#include<string>
#include<ctype.h>
#include<math.h>
#include<set>
#include<map>
#include<vector>
#include<queue>
#include<bitset>
#include<algorithm>
#include<time.h>
using namespace std;
void fre(){freopen("c://test//input.in","r",stdin);freopen("c://test//output.out","w",stdout);}
#define MS(x,y) memset(x,y,sizeof(x))
#define MC(x,y) memcpy(x,y,sizeof(x))
#define MP(x,y) make_pair(x,y)
#define ls o<<1
#define rs o<<1|1
typedef long long LL;
typedef unsigned long long UL;
typedef unsigned int UI;
template <class T1,class T2>inline void gmax(T1 &a,T2 b){if(b>a)a=b;}
template <class T1,class T2>inline void gmin(T1 &a,T2 b){if(b<a)a=b;}
const int N=0,M=0,Z=1e9+7,ms63=0x3f3f3f3f;
int casenum,casei;
LL a,b;
void add(LL &x,LL y)
{
	x=(x+y)%Z;
}
int main()
{
	while(~scanf("%lld%lld",&a,&b))
	{
		LL tmp=(1+a)*a/2%Z;
		LL ans=0;
		for(int i=1;i<b;++i)//枚举余数
		{
			add(ans,i*a);
			add(ans,b*i%Z*tmp);
		}
		printf("%lld\n",ans);
	}
	return 0;
}
/*
【题意】
给你两个数,1<=a,b<=1e7
我们想要知道,对于k∈[1,a],所有nice integers的和。
所谓nice integer,是指,如果x是nice integer,那么必要有——

1,mod(x,b)≠0
2,div(x,b)/mod(x,b)=k

【类型】
暴力

【分析】
这道题一眼看上去还以为是数论。
后来发现是暴力。
为什么呢?

我们发现mod(x,b),即余数的合法取值范围肯定是[1,b)
所以我们可以直接枚举mod(x,b)的所有合法取值。

然后,k的取值可以是[1,a]中的任意值。
于是,对于设x=kb+c,其中c为我们枚举的余数,我们需要把k取值为[1,a]所有情况下的结果做累加。

显然,只要累加上ac+(a+1)*a/2*b*i即可。
这样我们就做完啦!

【时间复杂度&&优化】
O(b)

*/


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值