結果

問題 No.1044 正直者大学
ユーザー amyuamyu
提出日時 2020-05-01 22:46:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 471 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 79,360 KB
最終ジャッジ日時 2024-12-25 13:39:48
合計ジャッジ時間 3,174 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
51,712 KB
testcase_01 AC 46 ms
52,096 KB
testcase_02 AC 55 ms
52,352 KB
testcase_03 AC 49 ms
51,840 KB
testcase_04 AC 47 ms
52,096 KB
testcase_05 AC 58 ms
59,904 KB
testcase_06 AC 107 ms
79,360 KB
testcase_07 AC 48 ms
52,096 KB
testcase_08 AC 48 ms
52,096 KB
testcase_09 AC 47 ms
51,584 KB
testcase_10 AC 47 ms
51,584 KB
testcase_11 AC 47 ms
51,968 KB
testcase_12 AC 72 ms
65,792 KB
testcase_13 AC 93 ms
76,544 KB
testcase_14 AC 69 ms
63,872 KB
testcase_15 AC 71 ms
67,328 KB
testcase_16 AC 95 ms
77,184 KB
testcase_17 AC 73 ms
69,120 KB
testcase_18 AC 84 ms
74,240 KB
testcase_19 AC 69 ms
64,256 KB
testcase_20 AC 58 ms
59,264 KB
testcase_21 AC 68 ms
64,256 KB
testcase_22 AC 55 ms
59,136 KB
testcase_23 AC 57 ms
59,776 KB
testcase_24 AC 58 ms
59,776 KB
testcase_25 AC 59 ms
59,904 KB
testcase_26 AC 58 ms
59,648 KB
testcase_27 AC 48 ms
51,840 KB
testcase_28 AC 45 ms
51,712 KB
testcase_29 AC 45 ms
52,352 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