#ABC145D. Knight
Knight
题目描述
There is a knight - the chess piece - at the origin of a two-dimensional grid.
When the knight is at the square , it can be moved to either or .
In how many ways can the knight reach the square ?
Find the number of ways mod .
在一个二维网格的原点 有一个马(国际象棋棋子)。
当马位于 格时,它可以移动到 或 格。
马可以通过几种方式到达 格?
求 的模数。
输入格式
输入内容按以下格式标准输入:
输出格式
打印骑士从 到达 的方法数,模数为 。
样例 #1
样例输入 #1
3 3
样例输出 #1
2
样例 #2
样例输入 #2
2 2
样例输出 #2
0
样例 #3
样例输入 #3
999999 999999
样例输出 #3
151840682
说明
数据规模与约定
- 所有输入值均为整数。
样例 解释
有两种方法 和 。
样例 解释
骑士无法到达 。
样例 解释
打印 的模数。