結果

問題 No.895 MESE
ユーザー fuppy_kyoprofuppy_kyopro
提出日時 2019-09-10 01:44:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,658 ms / 2,000 ms
コード長 706 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 34,412 KB
最終ジャッジ日時 2024-07-02 16:13:48
合計ジャッジ時間 24,061 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 26 ms
10,496 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 37 ms
10,880 KB
testcase_09 AC 34 ms
10,624 KB
testcase_10 AC 41 ms
10,752 KB
testcase_11 AC 38 ms
10,880 KB
testcase_12 AC 32 ms
10,880 KB
testcase_13 AC 885 ms
24,556 KB
testcase_14 AC 1,064 ms
24,432 KB
testcase_15 AC 1,135 ms
25,968 KB
testcase_16 AC 872 ms
23,404 KB
testcase_17 AC 746 ms
23,792 KB
testcase_18 AC 1,658 ms
34,412 KB
testcase_19 AC 1,614 ms
34,152 KB
testcase_20 AC 1,628 ms
34,280 KB
testcase_21 AC 1,615 ms
34,280 KB
testcase_22 AC 1,644 ms
34,408 KB
testcase_23 AC 1,617 ms
34,156 KB
testcase_24 AC 1,607 ms
34,152 KB
testcase_25 AC 1,601 ms
34,288 KB
testcase_26 AC 1,622 ms
34,156 KB
testcase_27 AC 1,627 ms
34,160 KB
testcase_28 AC 1,594 ms
34,412 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