結果
問題 | No.1596 Distance Sum in 2D Plane |
ユーザー | moharan627 |
提出日時 | 2021-08-05 20:51:10 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,388 bytes |
コンパイル時間 | 279 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 35,584 KB |
最終ジャッジ日時 | 2024-09-16 15:24:21 |
合計ジャッジ時間 | 22,906 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 140 ms
30,352 KB |
testcase_01 | AC | 138 ms
30,208 KB |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | AC | 141 ms
30,348 KB |
testcase_15 | AC | 139 ms
30,336 KB |
testcase_16 | AC | 141 ms
30,080 KB |
testcase_17 | AC | 140 ms
30,344 KB |
testcase_18 | AC | 141 ms
30,340 KB |
testcase_19 | AC | 140 ms
30,404 KB |
ソースコード
import sys INF = float('inf') #10**20,2**63,float('inf') MOD = 10**9 + 7 MOD2 = 998244353 #from collections import defaultdict def solve(): def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LC(): return list(input()) def IC(): return [int(c) for c in input()] def MI(): return map(int, sys.stdin.readline().split()) N,M = MI() def modinv(x): return pow(x, MOD - 2, MOD) MAX = 500050 Fact = [0]*MAX Fact[0] = 1 Fact[1] = 1 for n in range(2,MAX): Fact[n] = (n*(Fact[n-1]))%MOD #print((Fact[N+K]*modinv(Fact[N]*Fact[K])) % MOD) All = Fact[2*N]*modinv(Fact[N]*Fact[N]) % MOD All *= (2*N) All %= MOD #print(All) for _ in range(M): T,X,Y = MI() Bef = Fact[X+Y]*modinv(Fact[X]*Fact[Y])%MOD Up = N-X Right = N-Y if T==1: #print(Fact[(Up-1)+Right]*modinv(Fact[Up-1]*Fact[Right]) % MOD) All-= Bef*(Fact[(Up-1)+Right]*modinv(Fact[Up-1]*Fact[Right])) All %= MOD else: #print(Fact[Up+ Right-1] * modinv(Fact[Up] * Fact[Right-1]) % MOD) All -= Bef*(Fact[Up+ Right-1] * modinv(Fact[Up] * Fact[Right-1])) All %= MOD print(All) return solve() #sys.setrecursionlimit(10 ** 6)#再帰関数ではコメントにしないこと!!