結果

問題 No.1596 Distance Sum in 2D Plane
ユーザー realDivineJKrealDivineJK
提出日時 2021-07-25 17:07:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 682 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 82,432 KB
最終ジャッジ日時 2024-07-21 01:28:08
合計ジャッジ時間 4,380 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
64,384 KB
testcase_01 AC 59 ms
64,768 KB
testcase_02 AC 135 ms
81,792 KB
testcase_03 AC 136 ms
81,920 KB
testcase_04 AC 132 ms
81,792 KB
testcase_05 AC 142 ms
81,920 KB
testcase_06 AC 134 ms
82,432 KB
testcase_07 AC 132 ms
82,176 KB
testcase_08 AC 133 ms
81,792 KB
testcase_09 AC 131 ms
82,048 KB
testcase_10 AC 138 ms
81,920 KB
testcase_11 AC 119 ms
81,792 KB
testcase_12 AC 119 ms
82,048 KB
testcase_13 AC 116 ms
82,176 KB
testcase_14 AC 37 ms
51,968 KB
testcase_15 AC 37 ms
51,968 KB
testcase_16 AC 36 ms
51,840 KB
testcase_17 AC 36 ms
51,968 KB
testcase_18 AC 34 ms
51,968 KB
testcase_19 AC 35 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, M = map(int, input().split())
mod = int(1e9) + 7
fact = [1]*(2*N+13)
invf = [1]*(2*N+13)
for i in range(2*N+12):
    fact[i+1] = (i+1)*fact[i] % mod
invf[-1] = pow(fact[-1], mod-2, mod)
for i in range(2*N+12, 0, -1):
    invf[i-1] = i * invf[i] % mod
S = 0
for _ in range(M):
    t, x, y = map(int, input().split())
    X = fact[x+y] * invf[x] % mod
    X = X * invf[y] % mod
    X = X * fact[2*N-x-y-1] % mod
    if t == 1:
        X = X * invf[N-x-1] % mod
        X = X * invf[N-y] % mod
    else:
        X = X * invf[N-x] % mod
        X = X * invf[N-y-1] % mod
    S = (S + X) % mod
print((2*N*fact[2*N] * invf[N] * invf[N] - S) % mod)
0