結果

問題 No.1596 Distance Sum in 2D Plane
ユーザー AEnAEn
提出日時 2023-07-12 00:07:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 479 ms / 2,000 ms
コード長 523 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 82,632 KB
最終ジャッジ日時 2024-09-13 13:50:58
合計ジャッジ時間 9,581 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 331 ms
66,224 KB
testcase_01 AC 334 ms
66,268 KB
testcase_02 AC 479 ms
82,216 KB
testcase_03 AC 478 ms
81,816 KB
testcase_04 AC 473 ms
82,256 KB
testcase_05 AC 456 ms
81,764 KB
testcase_06 AC 471 ms
82,632 KB
testcase_07 AC 469 ms
82,052 KB
testcase_08 AC 479 ms
82,176 KB
testcase_09 AC 469 ms
82,112 KB
testcase_10 AC 475 ms
82,060 KB
testcase_11 AC 437 ms
82,176 KB
testcase_12 AC 434 ms
82,560 KB
testcase_13 AC 435 ms
82,048 KB
testcase_14 AC 40 ms
51,584 KB
testcase_15 AC 39 ms
51,584 KB
testcase_16 AC 39 ms
51,584 KB
testcase_17 AC 40 ms
52,352 KB
testcase_18 AC 39 ms
51,968 KB
testcase_19 AC 41 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod = 10**9+7
N, M = map(int,input().split())
fac = [1]*(2*N+1)
inv = [1]*(2*N+1)
for i in range(1,2*N+1):
    fac[i] = (fac[i-1]*i)%mod
    inv[i] = (inv[i-1]*pow(i,mod-2,mod))%mod

def ncr(n,r):
    return fac[n]*inv[r]*inv[n-r]%mod

ans = ncr(2*N,N)*2*N%mod
for i in range(M):
    t,x,y = map(int, input().split())
    if t==1:
        ans -= ncr(x+y,x)*ncr(N-(x+1)+N-y,N-y)
        ans %= mod
    else:
        ans -= ncr(x+y,x)*ncr(N-x+N-(y+1),N-x)
        ans %= mod
print(ans)
0