結果

問題 No.1596 Distance Sum in 2D Plane
ユーザー sasa8uyauyasasa8uyauya
提出日時 2023-10-12 19:34:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 922 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 104,576 KB
最終ジャッジ日時 2024-09-14 17:57:09
合計ジャッジ時間 14,354 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
97,792 KB
testcase_01 AC 68 ms
97,728 KB
testcase_02 AC 914 ms
104,492 KB
testcase_03 AC 904 ms
104,292 KB
testcase_04 AC 909 ms
104,084 KB
testcase_05 AC 898 ms
104,192 KB
testcase_06 AC 915 ms
104,576 KB
testcase_07 AC 906 ms
104,192 KB
testcase_08 AC 903 ms
104,448 KB
testcase_09 AC 912 ms
104,384 KB
testcase_10 AC 922 ms
104,320 KB
testcase_11 AC 849 ms
104,000 KB
testcase_12 AC 843 ms
104,244 KB
testcase_13 AC 840 ms
104,320 KB
testcase_14 AC 38 ms
51,968 KB
testcase_15 AC 37 ms
51,712 KB
testcase_16 AC 39 ms
51,712 KB
testcase_17 AC 38 ms
51,840 KB
testcase_18 AC 38 ms
51,968 KB
testcase_19 AC 38 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
M=1000000007
fa=[1]
for i in range(1,n+n+1):
  fa+=[fa[-1]*i%M]
a=fa[n+n]*pow(fa[n],M-2,M)*pow(fa[n],M-2,M)*(n+n)%M
for i in range(m):
  t,x,y=map(int,input().split())
  a-=fa[x+y]*pow(fa[x],M-2,M)*pow(fa[y],M-2,M)*fa[n-x-(t==1)+n-y-(t==2)]*pow(fa[n-x-(t==1)],M-2,M)*pow(fa[n-y-(t==2)],M-2,M)
  a%=M
print(a)
0