結果

問題 No.1044 正直者大学
ユーザー amyuamyu
提出日時 2020-05-01 22:38:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 523 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 79,104 KB
最終ジャッジ日時 2024-06-07 11:00:40
合計ジャッジ時間 2,578 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 39 ms
52,608 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 WA -
testcase_06 AC 85 ms
79,104 KB
testcase_07 AC 39 ms
51,840 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 AC 38 ms
52,216 KB
testcase_10 AC 39 ms
52,224 KB
testcase_11 AC 38 ms
51,712 KB
testcase_12 AC 57 ms
65,408 KB
testcase_13 AC 70 ms
76,324 KB
testcase_14 AC 54 ms
63,872 KB
testcase_15 AC 58 ms
67,840 KB
testcase_16 AC 72 ms
77,056 KB
testcase_17 AC 62 ms
69,376 KB
testcase_18 AC 69 ms
74,864 KB
testcase_19 AC 56 ms
64,512 KB
testcase_20 AC 47 ms
59,648 KB
testcase_21 AC 57 ms
64,256 KB
testcase_22 AC 47 ms
59,520 KB
testcase_23 AC 48 ms
59,412 KB
testcase_24 AC 46 ms
59,776 KB
testcase_25 AC 46 ms
60,288 KB
testcase_26 AC 47 ms
60,024 KB
testcase_27 AC 39 ms
51,840 KB
testcase_28 AC 38 ms
52,084 KB
testcase_29 AC 38 ms
52,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k=map(int,input().split())
if n+m-1<=k:
    print(0)
    quit()
mod=10**9+7
if m>n:
    n,m=m,n
N=n
fac=[1]*(N+3)
inv=[1]*(N+3)
t=1
for i in range(1,N+3):
    t*=i
    t%=mod
    fac[i]=t
t=pow(fac[N+2],mod-2,mod)
for i in range(N+2,0,-1):
    inv[i]=t
    t*=i
    t%=mod
def comb(n,r):
    if r>n or r<0:
        return 0
    return fac[n]*inv[n-r]*inv[r]%mod
ans=fac[n-1]*n*fac[m]
for i in range(2,m+1):
    if n+m-i*2<k:
        break
    ans+=fac[n-1]*comb(n,i)%mod*fac[m]*comb(m-1,i-1)%mod
    ans%=mod
print(ans)
0