Problem 627 题目发布于 2018-05-19 翻译更新于 2020-09-07 Problem 627 Counting productsConsider the set S of all possible products of n positive integers not exceeding m, that isS=x1x2…xn|1≤x1,x2,…,xn≤m.Let F(m,n) be the number of the distinct elements of the set S.For example, F(9,2)=36 and F(30,2)=308. Find F(30,10001)mod1 000 000 007 . 乘积计数记S为所有n个不超过m的正整数连乘的乘积所构成的集合,也即S=x1x2…xn|1≤x1,x2,…,xn≤m.记F(m,n)为S中不同元素的个数。例如,F(9,2)=36,而F(30,2)=308。 求F(30,10001)mod1 000 000 007。
Gitalking ...