当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

5389:Zero Escape

题目描述
Zero Escape, is a visual novel adventure video game directed by Kotaro Uchikoshi (you may hear about ever17?) and developed by Chunsoft.

Stilwell is enjoying the first chapter of this series, and in this chapter digital root is an important factor.

This is the definition of digital root on Wikipedia:
The digital root of a non-negative integer is the single digit value obtained by an iterative process of summing digits, on each iteration using the result from the previous iteration to compute a digit sum. The process continues until a single-digit number is reached.
For example, the digital root of $65536$ is $7$, because $6 + 5 + 5 + 3 + 6 = 25$ and $2 + 5 = 7$.

In the game, every player has a special identifier. Maybe two players have the same identifier, but they are different players. If a group of players want to get into a door numbered $X(1\leq X\leq 9)$, the digital root of their identifier sum must be $X$.
For example, players $\{1,2,6\}$ can get into the door $9$, but players $\{2,3,3\}$ can't.

There is two doors, numbered $A$ and $B$. Maybe $A=B$, but they are two different door.
And there is $n$ players, everyone must get into one of these two doors. Some players will get into the door $A$, and others will get into the door $B$.
For example:
players are $\{1,2,6\}$, $A=9$, $B=1$
There is only one way to distribute the players: all players get into the door $9$. Because there is no player to get into the door $1$, the digital root limit of this door will be ignored.

Given the identifier of every player, please calculate how many kinds of methods are there, $mod~258280327$.
输入解释
The first line of the input contains a single number $T$, the number of test cases.
For each test case, the first line contains three integers $n$, $A$ and $B$.
Next line contains $n$ integers $id_i$, describing the identifier of every player.
$T\leq 100$, $n\leq 10^5$, $\sum n\leq 10^6$, $1\leq A,B,id_i\leq 9$
输出解释
For each test case, output a single integer in a single line, the number of ways that these $n$ players can get into these two doors.
输入样例
4
3 9 1
1 2 6
3 9 1
2 3 3
5 2 3
1 1 1 1 1
9 9 9
1 2 3 4 5 6 7 8 9
输出样例
1
0
10
60
来自杭电HDUOJ的附加信息
Author SXYZ
Recommend wange2014

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-5389

最后修改于 2020-10-25T23:22:16+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
2000/1000MS(Java/Others) 131072/131072K(Java/Others)