結果

問題 No.1596 Distance Sum in 2D Plane
ユーザー minimumminimum
提出日時 2021-07-09 23:43:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 86,016 KB
最終ジャッジ日時 2024-07-01 18:34:26
合計ジャッジ時間 5,061 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
68,736 KB
testcase_01 AC 76 ms
68,736 KB
testcase_02 AC 297 ms
85,632 KB
testcase_03 AC 300 ms
85,888 KB
testcase_04 AC 294 ms
85,504 KB
testcase_05 AC 289 ms
85,888 KB
testcase_06 AC 290 ms
85,632 KB
testcase_07 AC 288 ms
85,376 KB
testcase_08 AC 290 ms
85,632 KB
testcase_09 AC 294 ms
85,376 KB
testcase_10 AC 293 ms
85,248 KB
testcase_11 AC 248 ms
86,016 KB
testcase_12 AC 245 ms
85,632 KB
testcase_13 AC 243 ms
85,376 KB
testcase_14 AC 40 ms
51,712 KB
testcase_15 AC 40 ms
51,712 KB
testcase_16 AC 40 ms
51,840 KB
testcase_17 AC 40 ms
52,224 KB
testcase_18 AC 41 ms
51,712 KB
testcase_19 AC 42 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
mod = 10 ** 9 + 7

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

def c(x, y):
    return (fact[x + y] * fact_inv[x] * fact_inv[y]) % mod

ans = (c(n, n) * 2 * n) % mod

for i in range(m):
    t, x, y = map(int, input().split())
    if t == 1:
        ans = (ans - c(x, y) * c(n - y, n - 1 - x)) % mod
    else:
        ans = (ans - c(x, y) * c(n - x, n - 1 - y)) % mod

print(ans)
0