結果

問題 No.895 MESE
ユーザー fuppy_kyoprofuppy_kyopro
提出日時 2019-09-10 01:45:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 362 ms / 2,000 ms
コード長 706 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 110,464 KB
最終ジャッジ日時 2024-07-02 16:11:20
合計ジャッジ時間 7,238 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 54 ms
60,672 KB
testcase_09 AC 55 ms
61,184 KB
testcase_10 AC 56 ms
61,312 KB
testcase_11 AC 55 ms
61,440 KB
testcase_12 AC 51 ms
60,544 KB
testcase_13 AC 226 ms
93,696 KB
testcase_14 AC 239 ms
90,624 KB
testcase_15 AC 270 ms
95,616 KB
testcase_16 AC 219 ms
90,240 KB
testcase_17 AC 205 ms
88,320 KB
testcase_18 AC 357 ms
110,208 KB
testcase_19 AC 356 ms
107,520 KB
testcase_20 AC 358 ms
110,444 KB
testcase_21 AC 358 ms
108,032 KB
testcase_22 AC 362 ms
109,952 KB
testcase_23 AC 357 ms
107,984 KB
testcase_24 AC 359 ms
110,464 KB
testcase_25 AC 359 ms
107,520 KB
testcase_26 AC 358 ms
109,952 KB
testcase_27 AC 357 ms
107,520 KB
testcase_28 AC 355 ms
107,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/Users/fushishita/.pyenv/shims/python

import sys

MOD = 1000000007
fact = [1]
rfact = [1]

def mod_inverse(x):
    return pow(x, MOD - 2, MOD)

def nCr(n, r):
    if r > n:
        return 0
    ret = fact[n]
    ret = ret * rfact[r] % MOD
    ret = ret * rfact[n - r] % MOD
    return ret

a, b, c = list(map(int, input().split()))
n = a + b + c

for i in range(1, n + 1):
    fact.append(fact[i - 1] * i % MOD)
    rfact.append(mod_inverse(fact[i]))

ans = 0
for i in range(1, a + 1):
    x = a + b + c - i - 1
    add = pow(2, x, MOD) - 1
    add = add * nCr(x - 1, c - 1) % MOD * nCr(x - 1 - (c - 1), b - 1) % MOD
    ans = (ans + add) % MOD
ans = (ans + MOD) % MOD
print('{}\n'.format(ans), end='')
0