結果

問題 No.1596 Distance Sum in 2D Plane
ユーザー TadaTada
提出日時 2021-07-09 23:35:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 938 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 105,856 KB
最終ジャッジ日時 2024-07-01 18:27:35
合計ジャッジ時間 12,689 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
88,064 KB
testcase_01 AC 70 ms
87,680 KB
testcase_02 AC 938 ms
105,216 KB
testcase_03 AC 933 ms
105,472 KB
testcase_04 AC 926 ms
105,396 KB
testcase_05 AC 915 ms
105,472 KB
testcase_06 AC 926 ms
105,856 KB
testcase_07 AC 928 ms
105,472 KB
testcase_08 AC 917 ms
105,472 KB
testcase_09 AC 927 ms
105,472 KB
testcase_10 AC 913 ms
105,728 KB
testcase_11 AC 863 ms
105,728 KB
testcase_12 AC 863 ms
105,856 KB
testcase_13 AC 855 ms
105,216 KB
testcase_14 AC 39 ms
51,712 KB
testcase_15 AC 39 ms
51,712 KB
testcase_16 AC 39 ms
51,712 KB
testcase_17 AC 39 ms
51,712 KB
testcase_18 AC 39 ms
51,328 KB
testcase_19 AC 40 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())

mod=10**9+7
fac=[1]

for i in range(1,N*2+1):
    fac+=fac[-1]*i%mod,

def comb(n,k):
    return fac[n]*pow(fac[k],mod-2,mod)*pow(fac[n-k],mod-2,mod)%mod

ans=comb(2*N,N)*N*2
for i in range(M):
    t,x,y=map(int,input().split())
    if t==1:
        ans-=comb(x+y,x)*comb(2*N-x-y-1,N-x-1)
    if t==2:
        ans-=comb(x+y,y)*comb(2*N-x-y-1,N-y-1)

print(ans%mod)
0