시간 제한메모리 제한제출정답맞힌 사람정답 비율
5 초 256 MB228847.059%

문제

You are given a chessboard of size x × y and k identical kings, and are asked to place all the kings on the board such that no two kings can attack each other. Two kings can attack each other if they are horizontally, vertically or diagonally adjacent.

Write a computer program that calculates the number of possible arrangements of the k kings on the given chessboard. Since the number of feasible arrangements may be large, reduce the number modulo 1,000,000,007.

입력

The first line of the input consists of a single integer T, the number of test cases. Each of the following T lines consists of three integers x, y and k, separated by one space.

  • 0 < T ≤ 50
  • 2 ≤ x, y ≤ 15
  • 1 ≤ k ≤ x · y

출력

For each test case, output the number of possibilities modulo 1,000,000,007.

예제 입력 1

4
8 8 1
7 7 16
7 7 7
3 7 15

예제 출력 1

64
1
2484382
0