結果

問題 No.1520 Zigzag Sum
ユーザー rlangevinrlangevin
提出日時 2023-04-22 17:32:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 539 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 82,560 KB
最終ジャッジ日時 2024-11-07 05:37:32
合計ジャッジ時間 2,764 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
64,640 KB
testcase_01 AC 58 ms
64,768 KB
testcase_02 AC 126 ms
82,304 KB
testcase_03 AC 147 ms
82,176 KB
testcase_04 AC 148 ms
82,304 KB
testcase_05 AC 149 ms
81,792 KB
testcase_06 AC 129 ms
82,560 KB
testcase_07 AC 128 ms
82,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

n = 404040
mod = 10 ** 9 + 7

fact = [1] * (n + 1)
inv = [1] * (n + 1)
for i in range(1, n):
    fact[i + 1] = ((i+1) * fact[i]) % mod
inv[n] = pow(fact[n], mod - 2, mod)
for i in range(n - 1, -1, -1):
    inv[i] = inv[i + 1] * (i + 1) % mod

def comb(n, r):
    if n < 0 or r < 0 or n - r < 0:
        return 0
    return fact[n] * inv[r] * inv[n - r] % mod

T = int(readline())
for _ in range(T):
    H, W = map(int, readline().split())
    print(2 * (H + W - 3) * comb(H + W - 4 , H - 2) % mod)
0