結果
問題 | No.895 MESE |
ユーザー | titia |
提出日時 | 2019-09-27 23:08:43 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 580 bytes |
コンパイル時間 | 183 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 33,696 KB |
最終ジャッジ日時 | 2024-09-25 01:24:37 |
合計ジャッジ時間 | 6,105 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 161 ms
33,696 KB |
testcase_01 | AC | 160 ms
26,496 KB |
testcase_02 | AC | 166 ms
26,496 KB |
testcase_03 | AC | 160 ms
26,496 KB |
testcase_04 | AC | 165 ms
26,496 KB |
testcase_05 | AC | 163 ms
26,496 KB |
testcase_06 | AC | 161 ms
26,496 KB |
testcase_07 | AC | 161 ms
26,496 KB |
testcase_08 | AC | 163 ms
26,496 KB |
testcase_09 | AC | 163 ms
26,624 KB |
testcase_10 | AC | 167 ms
26,496 KB |
testcase_11 | AC | 166 ms
26,624 KB |
testcase_12 | AC | 166 ms
26,496 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 | -- | - |
ソースコード
a,b,c=map(int,input().split()) mod=10**9+7 FACT=[1] for i in range(1,2*10**5+1): FACT.append(FACT[-1]*i%mod) FACT_INV=[pow(FACT[-1],mod-2,mod)] for i in range(2*10**5,0,-1): FACT_INV.append(FACT_INV[-1]*i%mod) FACT_INV.reverse() def Combi(a,b): if 0<=b<=a: return FACT[a]*FACT_INV[b]*FACT_INV[a-b]%mod else: return 0 S=a+b+c ANS=(1<<(S-3))*Combi(S-3,a-1)*Combi(S-3-(a-1),b-1)%mod for i in range(S-3): COM=Combi(S-2,a-1) if S-(i+1)<=a: COM-=Combi(i,a-(S-(i+1))) ANS=(ANS+(1<<i)*COM*Combi(S-3-(a-1),b-1))%mod print(ANS)