結果

問題 No.1596 Distance Sum in 2D Plane
ユーザー 👑 rin204rin204
提出日時 2021-07-09 22:01:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 768 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 84,916 KB
最終ジャッジ日時 2024-07-01 16:23:14
合計ジャッジ時間 4,453 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 61 ms
67,624 KB
testcase_02 AC 242 ms
84,168 KB
testcase_03 AC 221 ms
84,360 KB
testcase_04 AC 219 ms
84,052 KB
testcase_05 AC 217 ms
84,156 KB
testcase_06 AC 217 ms
84,080 KB
testcase_07 AC 213 ms
84,292 KB
testcase_08 AC 215 ms
84,412 KB
testcase_09 AC 218 ms
84,252 KB
testcase_10 AC 216 ms
84,236 KB
testcase_11 AC 189 ms
84,180 KB
testcase_12 AC 188 ms
84,916 KB
testcase_13 AC 187 ms
84,412 KB
testcase_14 AC 55 ms
67,620 KB
testcase_15 AC 56 ms
67,708 KB
testcase_16 AC 57 ms
67,924 KB
testcase_17 AC 58 ms
67,432 KB
testcase_18 AC 55 ms
67,216 KB
testcase_19 AC 57 ms
67,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
N = 500000
fact = [0 for _ in range(N)]
invfact = [0 for _ in range(N)]
fact[0] = 1
for i in range(1, N):
    fact[i] = fact[i - 1] * i % MOD

invfact[N - 1] = pow(fact[N - 1], MOD - 2, MOD)

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

def nCk(n, k):
    if k < 0 or n < k:
        return 0
    else:
        return (fact[n] * invfact[k] % MOD) * invfact[n - k] % MOD

def nHk(n, k):
    return nCk(n + k - 1, k)
    
n, m = map(int, input().split())
ans = nCk(2 * n, n) * 2 * n
for _ in range(m):
    t, x, y = map(int, input().split())
    if t == 1:
        ans -= nCk(x + y, x) * nCk(2 * n - (x + y + 1), n - y)
    else:
        ans -= nCk(x + y, x) * nCk(2 * n - (x + y + 1), n - x)
    ans %= MOD
print(ans)
0