結果

問題 No.1596 Distance Sum in 2D Plane
ユーザー wolgnikwolgnik
提出日時 2021-07-09 22:11:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 941 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 134,024 KB
最終ジャッジ日時 2024-07-01 16:40:11
合計ジャッジ時間 4,318 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 105 ms
119,100 KB
testcase_02 AC 207 ms
133,912 KB
testcase_03 AC 203 ms
134,016 KB
testcase_04 AC 200 ms
133,856 KB
testcase_05 AC 199 ms
134,016 KB
testcase_06 AC 197 ms
133,612 KB
testcase_07 AC 195 ms
133,568 KB
testcase_08 AC 197 ms
133,672 KB
testcase_09 AC 195 ms
134,016 KB
testcase_10 AC 195 ms
134,024 KB
testcase_11 AC 176 ms
133,680 KB
testcase_12 AC 174 ms
133,900 KB
testcase_13 AC 171 ms
133,792 KB
testcase_14 AC 38 ms
52,796 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 39 ms
53,276 KB
testcase_18 AC 38 ms
52,608 KB
testcase_19 AC 39 ms
54,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, M = map(int, input().split())
mod = 10 ** 9 + 7

class Factorial:
  def __init__(self, n, mod):
    self.mod = mod
    self.f = [1]
    for i in range(1, n + 1): self.f.append(self.f[-1] * i % mod)
    self.i = [pow(self.f[-1], mod - 2, mod)]
    for i in range(1, n + 1)[: : -1]: self.i.append(self.i[-1] * i % mod)
    self.i.reverse()
  def factorial(self, i): return self.f[i]
  def ifactorial(self, i): return self.i[i]
  def combi(self, n, k): return self.f[n] * self.i[n - k] % self.mod * self.i[k] % self.mod
  def permi(self, n, k): return self.f[n] * self.i[n - k] % self.mod

f = Factorial(N * 2, mod)
res = f.combi(N * 2, N) * (N * 2)
#print(res)
for _ in range(M):
  t, x, y = map(int, input().split())
  u, v = x, y
  if t == 1: u += 1
  if t == 2: v += 1
  if u in range(N) and v in range(N):
    res -= f.combi(x + y, x) * f.combi(N * 2 - u - v, N - u) % mod
    res %= mod
print(res)
0