传统题 1000ms 256MiB

D - Knight

该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。

D - Knight

Score : $400$ points

Problem Statement

There is a knight - the chess piece - at the origin $(0, 0)$ of a two-dimensional grid.

When the knight is at the square $(i, j)$, it can be moved to either $(i+1,j+2)$ or $(i+2, j+1)$.

In how many ways can the knight reach the square $(X, Y)$?

Find the number of ways modulo $10^9 + 7$.

Constraints

  • $1 \leq X \leq 10^6$
  • $1 \leq Y \leq 10^6$
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

XX YY

Output

Print the number of ways for the knight to reach $(X, Y)$ from $(0, 0)$, modulo $10^9 + 7$.


3 3
2

There are two ways: $(0,0) \to (1,2) \to (3,3)$ and $(0,0) \to (2,1) \to (3,3)$.


2 2
0

The knight cannot reach $(2,2)$.


999999 999999
151840682

Print the number of ways modulo $10^9 + 7$.

2024暑假入门组刷题营第三期(六)

未参加
状态
已结束
规则
IOI
题目
8
开始于
2024-7-13 13:00
结束于
2024-7-13 15:00
持续时间
2 小时
主持人
参赛人数
8