結果
問題 | No.1596 Distance Sum in 2D Plane |
ユーザー | Igrmi |
提出日時 | 2021-07-09 22:28:17 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 568 bytes |
コンパイル時間 | 277 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 1,047,012 KB |
最終ジャッジ日時 | 2024-07-01 17:06:44 |
合計ジャッジ時間 | 7,167 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
MOD = 10 ** 9 + 7 N, M = map(int, input().split()) Kaijo = [1] * (N + N + 1) KaijoInv = [1] * (N + N + 1) for i in range(1, N + N + 1): Kaijo[i] = Kaijo[i - 1] * i KaijoInv[i] = pow(Kaijo[i], MOD - 2, MOD) nCr = lambda n, r: Kaijo[n] * KaijoInv[n - r] % MOD * KaijoInv[r] % MOD Ans = nCr(N + N, N) * 2 * N % MOD for _ in range(M): T, X, Y = map(int, input().split()) if T == 1: Ans -= nCr(X + Y, X) * nCr(N - X - 1 + N - Y, N - Y) % MOD if T == 2: Ans -= nCr(X + Y, X) * nCr(N - X + N - Y - 1, N - X) % MOD Ans %= MOD print(Ans)