101453: [AtCoder]ABC145 D - Knight

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

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:

$X$ $Y$

Output

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


Sample Input 1

3 3

Sample Output 1

2

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


Sample Input 2

2 2

Sample Output 2

0

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


Sample Input 3

999999 999999

Sample Output 3

151840682

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

Input

题意翻译

一个二维矩阵的原点(0,0)有一个骑士棋子。 当骑士位于这个矩阵的(i,j)时,可以将其移动到(i+1,j+2)或(i+2,j+1)处。 骑士可以通过几种方式达到位置(x,y)? 输出答案对1000000007取模

加入题单

算法标签: