codeforces 476C 推公式

题目大意:给定a,b,对于一个数x,若x是nice number,则满足(x/b)/(x%b) == [1,a](即结果在1-a之间)问:输出一个数表示 所有nice number的和。思路:令 d = div(x, b)m = mod(x, b), 则:
d = mk
x = db + m
有 x = mkb + m = (kb + 1) * m。求出m,k即可



结果为:


#include <cstdio>
#include <string>
#include <cstring>
#include <fstream>
#include <algorithm>
#include <cmath>
#include <queue>
#include <stack>
#include <vector>
#include <map>
#include <set>
#include <iomanip>
#include <iostream>
#include <sstream>
using namespace std;
#define maxn 1003
#define MOD 1000000007
#define mem(a , b) memset(a , b , sizeof(a))
#define LL __int64

int main()
{
    LL a , b , ans , tmp;
    while(scanf("%I64d %I64d" , &a , &b) != EOF)
    {
        tmp = b * (b - 1) / 2;
        tmp %= MOD;
        ans = a * ( a + 1 ) / 2;
        ans %= MOD ;
        ans = ans * b % MOD;
        ans += a;
        ans = ans * tmp % MOD;
        printf("%I64d\n" , ans);
    }
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值