結果

問題 No.1044 正直者大学
ユーザー amyuamyu
提出日時 2020-05-01 22:46:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 471 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,872 KB
最終ジャッジ日時 2024-06-07 11:06:28
合計ジャッジ時間 2,509 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 46 ms
60,544 KB
testcase_06 AC 83 ms
79,872 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 AC 37 ms
52,096 KB
testcase_10 AC 38 ms
51,712 KB
testcase_11 AC 37 ms
51,840 KB
testcase_12 AC 56 ms
65,920 KB
testcase_13 AC 69 ms
76,916 KB
testcase_14 AC 52 ms
64,256 KB
testcase_15 AC 56 ms
67,840 KB
testcase_16 AC 69 ms
76,936 KB
testcase_17 AC 58 ms
69,376 KB
testcase_18 AC 61 ms
74,496 KB
testcase_19 AC 52 ms
64,640 KB
testcase_20 AC 43 ms
59,520 KB
testcase_21 AC 52 ms
64,640 KB
testcase_22 AC 45 ms
59,136 KB
testcase_23 AC 45 ms
59,904 KB
testcase_24 AC 45 ms
59,776 KB
testcase_25 AC 46 ms
60,032 KB
testcase_26 AC 45 ms
60,160 KB
testcase_27 AC 38 ms
52,480 KB
testcase_28 AC 38 ms
51,968 KB
testcase_29 AC 37 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k=map(int,input().split())

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=0
for i in range(1,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