

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
縦 メートル、横 メートルの長方形の部屋があります。
この部屋に メートル × メートルの区別できない畳 (長方形のタイル) と、 メートル × メートルの区別できない半畳 (正方形のタイル) を敷き詰めます。 メートル × メートルの畳は縦長にも横長にも使うことができます。
敷き詰める方法は何通りあるでしょうか?
回転や反転を行うことで初めて一致するような敷き詰め方は区別します。
答えは非常に大きくなる可能性があるので で割ったあまりを求めてください。
制約
入力
入力は以下の形式で標準入力から与えられる。
出力
答えを出力せよ。
入力例 1Copy
2 2
出力例 1Copy
7
以下の つです。
入力例 2Copy
3 3
出力例 2Copy
131
入力例 3Copy
5 100
出力例 3Copy
379944232
で割ったあまりを求めてください。
Score : points
Problem Statement
We have a rectangular room that is meters long and meters wide.
We will fill this entire room with tatami (rectangular mats) that are meters long and meter wide, and hanjo (square mats) that are meter long and meter wide. Each tatami can be placed vertically or horizontally.
How many ways are there to fill the room?
We distinguish ways that match only after rotation or reflection.
Since the count can be enormous, find it modulo .
Constraints
Input
Input is given from Standard Input in the following format:
Output
Print the answer.
Sample Input 1Copy
2 2
Sample Output 1Copy
7
We have the following seven ways:
Sample Input 2Copy
3 3
Sample Output 2Copy
131
Sample Input 3Copy
5 100
Sample Output 3Copy
379944232
Be sure to find the count modulo .