• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
T Y
博客园    首页    新随笔    联系   管理    订阅  订阅

CodeForces 236B Easy Number Challenge

Description

Let's denote d(n) as the number of divisors of a positive integer n. You are given three integers a, b and c. Your task is to calculate the following sum:

 

 

Find the sum modulo 1073741824(230).

Input

The first line contains three space-separated integers a, b and c (1 ≤ a, b, c ≤ 100).

Output

Print a single integer — the required sum modulo 1073741824(230).

Sample Input

Input
2 2 2
Output
20
Input
5 6 7
Output
1520


//预处理出1~1000000数的因子个数。
#include <iostream>
#include <cstdio>
using namespace std;
int mod = 1073741824;
long x[1000001];
int main()
{
	for (int i=1; i<1000001; i++)
	for (int j=i; j<1000001; j+=i)
		x[j]++;
	int a,b,c;
	long sum=0;
	while(cin>>a>>b>>c)
	{
	    for (int i=1; i<=a; i++)
	    {
          for (int j=1; j<=b; j++)
           {
               for (int k=1; k<=c; k++)
               {
                   sum += x[i*j*k];

               }
           }
	    }
	    if(sum > mod)
            {
              sum %= mod;
            }
		printf("%ld",sum);
		cout<<endl;
	}


	return 0;
}






 
posted @ 2013-08-10 16:53  T天天T  阅读(467)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3