結果

問題 No.895 MESE
ユーザー roarisroaris
提出日時 2019-09-28 10:48:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 402 bytes
コンパイル時間 781 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 156,672 KB
最終ジャッジ日時 2024-10-01 19:23:47
合計ジャッジ時間 5,397 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
140,416 KB
testcase_01 AC 88 ms
135,424 KB
testcase_02 AC 89 ms
135,424 KB
testcase_03 AC 89 ms
135,040 KB
testcase_04 AC 95 ms
135,296 KB
testcase_05 AC 89 ms
135,040 KB
testcase_06 AC 91 ms
135,168 KB
testcase_07 AC 89 ms
135,168 KB
testcase_08 AC 93 ms
137,600 KB
testcase_09 AC 100 ms
140,544 KB
testcase_10 AC 100 ms
141,184 KB
testcase_11 AC 101 ms
141,440 KB
testcase_12 AC 95 ms
137,344 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def C(n, r):
    return fact[n] * inv(fact[r]) * inv(fact[n-r])

a, b, c = map(int, input().split())
MOD = 10**9 + 7
fact = [1]

for i in range(1, 10**6):
    fact.append(i * fact[-1] % MOD)
    
ans = 0

for i in range(b+c-1, a+b+c-1): #iはyの最上位ビットの位置(0_indexed)
    ans += (2**i-1) * C(i-1, b-1) * C(i-b, c-1)
    ans %= MOD

print(ans)
0