結果

問題 No.1596 Distance Sum in 2D Plane
ユーザー hir355hir355
提出日時 2021-07-09 21:50:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 909 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 81,280 KB
最終ジャッジ日時 2024-07-01 15:59:12
合計ジャッジ時間 12,471 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
61,184 KB
testcase_01 AC 46 ms
60,928 KB
testcase_02 AC 909 ms
81,060 KB
testcase_03 AC 901 ms
81,180 KB
testcase_04 AC 901 ms
80,768 KB
testcase_05 AC 892 ms
80,828 KB
testcase_06 AC 892 ms
80,904 KB
testcase_07 AC 888 ms
80,912 KB
testcase_08 AC 891 ms
80,536 KB
testcase_09 AC 887 ms
80,908 KB
testcase_10 AC 889 ms
80,640 KB
testcase_11 AC 824 ms
81,280 KB
testcase_12 AC 825 ms
81,044 KB
testcase_13 AC 821 ms
80,896 KB
testcase_14 AC 38 ms
51,968 KB
testcase_15 AC 38 ms
52,096 KB
testcase_16 AC 37 ms
52,480 KB
testcase_17 AC 37 ms
52,224 KB
testcase_18 AC 38 ms
52,224 KB
testcase_19 AC 39 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
n, m = map(int, input().split())
fac = [1] * (n * 2 + 1)
for i in range(len(fac) - 1):
    fac[i + 1] = fac[i] * (i + 1) % MOD
comb = lambda n, r : fac[n] * pow(fac[n - r], MOD - 2, MOD) * pow(fac[r], MOD - 2, MOD) % MOD
ans = comb(2 * n, n) * n * 2
for _ in range(m):
    t, x, y = map(int, input().split())
    if t == 1:
        ans -= comb(x + y, x) * comb(n * 2 - x - y - 1, n - y)
    else:
        ans -= comb(x + y, x) * comb(n * 2 - x - y - 1, n - x)
print(ans % MOD)
0