码迷,mamicode.com
首页 > 其他好文 > 详细

51Nod-1586-约数和

时间:2017-07-11 00:49:00      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:char   oid   bsp   const   --   blog   put   ++   get   

 

#include <cstdio>

using namespace std;

typedef long long ll;

const int MAXN = 1e6 + 10;

int n, q;
int cnt[MAXN];
ll a[MAXN];

template <class T>
inline void scan_d(T &ret)
{
    char c;
    ret = 0;
    while ((c = getchar()) < 0 || c > 9);
    while (c >= 0 && c <= 9)
    {
        ret = ret * 10 + (c - 0), c = getchar();
    }
}

template <class T>
inline void print_d(T x)
{
    if (x > 9)
    {
        print_d(x / 10);
    }
    putchar(x % 10 + 0);
}

int main()
{
    scan_d(n), scan_d(q);
    for (int i = 1; i <= n; i++)
    {
        for (int j = i; j <= n; j += i)
        {
            cnt[j]++;
        }
    }

    int odr, x, y;
    while (q--)
    {
        scan_d(odr);
        if (odr == 1)
        {
            scan_d(x), scan_d(y);
            for (int i = x, j = 1; i <= n; i += x, j++)
            {
                a[i] += y * cnt[j];
            }
        }
        else
        {
            scan_d(x);
            print_d(a[x]);
            putchar(10);
        }
    }

    return 0;
}

 

51Nod-1586-约数和

标签:char   oid   bsp   const   --   blog   put   ++   get   

原文地址:http://www.cnblogs.com/kimsimple/p/7148337.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!