結果

問題 No.1596 Distance Sum in 2D Plane
ユーザー mrngmrng
提出日時 2021-12-13 21:35:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 551 ms / 2,000 ms
コード長 496 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 108,792 KB
最終ジャッジ日時 2024-07-22 20:59:47
合計ジャッジ時間 10,391 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 361 ms
92,992 KB
testcase_01 AC 360 ms
93,492 KB
testcase_02 AC 548 ms
108,792 KB
testcase_03 AC 551 ms
108,116 KB
testcase_04 AC 544 ms
107,928 KB
testcase_05 AC 545 ms
107,812 KB
testcase_06 AC 549 ms
107,964 KB
testcase_07 AC 541 ms
107,892 KB
testcase_08 AC 548 ms
107,928 KB
testcase_09 AC 549 ms
107,628 KB
testcase_10 AC 536 ms
107,556 KB
testcase_11 AC 511 ms
108,376 KB
testcase_12 AC 503 ms
107,996 KB
testcase_13 AC 507 ms
107,964 KB
testcase_14 AC 38 ms
52,240 KB
testcase_15 AC 38 ms
52,764 KB
testcase_16 AC 39 ms
52,396 KB
testcase_17 AC 39 ms
53,008 KB
testcase_18 AC 38 ms
52,612 KB
testcase_19 AC 38 ms
53,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
mod = 10**9+7
f = [i for i in range(2*n+1)]
f[0] = 1
for i in range(2*n):
	f[i+1] *= f[i]
	f[i+1] %= mod
fv = []
for i in range(2*n+1):
	fv.append(pow(f[i],mod-2,mod))
ans = f[2*n]*fv[n]%mod*fv[n]%mod*2*n%mod
for _ in range(m):
	t,x,y = map(int,input().split())
	if t==1:
		ans -= f[x+y]*fv[x]%mod*fv[y]%mod*f[2*n-x-y-1]*fv[n-x-1]%mod*fv[n-y]%mod
		ans %= mod
	else:
		ans -= f[x+y]*fv[x]%mod*fv[y]%mod*f[2*n-x-y-1]*fv[n-x]%mod*fv[n-y-1]%mod
		ans %= mod
print(ans)
0