0%

Problem 778


Problem 778


Freshman’s Product

If a,b are two nonnegative integers with decimal representations a=(a2a1a0) and b=(b2b1b0) respectively, then the freshman’s product of a and b, denoted ab, is the integer c with decimal representation c=(c2c1c0) such that ci is the last digit of aibi.

For example, 234765=480.

Let F(R,M) be the sum of x1xR for all sequences of integers (x1,,xR) with 0xiM.

For example, F(2,7)=204, and F(23,76)5870548(mod1 000 000 009).

Find F(234567,765432), give your answer modulo 1 000 000 009.


初学者乘积

ab是两个非负整数,其十进制表示分别是a=(a2a1a0)b=(b2b1b0),则ab初学者乘积,记为ab,是另一个整数c,其十进制表示为c=(c2c1c0),其中ciaibi的末位数字。

例如,234765=480

对于所有满足0xiM的整数列(x1,,xR),记F(R,M)x1xR之和。

例如,F(2,7)=204F(23,76)5870548(mod1 000 000 009)

F(234567,765432),并将你的答案对1 000 000 009取余。


Gitalking ...