結果

問題 No.895 MESE
ユーザー pluto77pluto77
提出日時 2019-11-22 09:39:21
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 494 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 1,264 ms
コンパイル使用メモリ 76,600 KB
実行使用メモリ 153,472 KB
最終ジャッジ日時 2024-10-11 02:31:30
合計ジャッジ時間 11,222 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
152,832 KB
testcase_01 AC 125 ms
152,320 KB
testcase_02 AC 125 ms
152,448 KB
testcase_03 AC 127 ms
152,740 KB
testcase_04 AC 125 ms
152,704 KB
testcase_05 AC 124 ms
152,448 KB
testcase_06 AC 125 ms
152,704 KB
testcase_07 AC 126 ms
152,712 KB
testcase_08 AC 130 ms
152,968 KB
testcase_09 AC 137 ms
152,576 KB
testcase_10 AC 133 ms
153,128 KB
testcase_11 AC 135 ms
152,576 KB
testcase_12 AC 130 ms
152,852 KB
testcase_13 AC 259 ms
152,960 KB
testcase_14 AC 442 ms
153,136 KB
testcase_15 AC 462 ms
152,576 KB
testcase_16 AC 336 ms
153,088 KB
testcase_17 AC 177 ms
153,472 KB
testcase_18 AC 491 ms
152,704 KB
testcase_19 AC 494 ms
153,216 KB
testcase_20 AC 493 ms
153,344 KB
testcase_21 AC 492 ms
152,576 KB
testcase_22 AC 489 ms
152,832 KB
testcase_23 AC 494 ms
152,576 KB
testcase_24 AC 492 ms
153,344 KB
testcase_25 AC 491 ms
152,832 KB
testcase_26 AC 493 ms
152,832 KB
testcase_27 AC 492 ms
152,960 KB
testcase_28 AC 493 ms
152,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki895

def combi(n,r,m):
 return fact[n]*pow(fact[r],m-2,m)*pow(fact[n-r],m-2,m)

mod=10**9+7
a,b,c=map(int,raw_input().split())
fact=[1]
for i in range(1,10**6):
 fact.append(i*fact[-1]%mod)

res=0
for i in range(b+c-1,a+b+c-1):
 res+=(pow(2,i,mod)-1)*combi(i-1,b-1,mod)*combi(i-b,c-1,mod)
 res%=mod
print res
0