結果

問題 No.1127 変形パスカルの三角形
ユーザー flippergoflippergo
提出日時 2024-12-13 18:41:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 339 ms / 1,500 ms
コード長 514 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 80,364 KB
最終ジャッジ日時 2024-12-13 18:41:29
合計ジャッジ時間 8,437 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,192 KB
testcase_01 AC 339 ms
78,940 KB
testcase_02 AC 252 ms
80,020 KB
testcase_03 AC 210 ms
78,640 KB
testcase_04 AC 88 ms
76,608 KB
testcase_05 AC 184 ms
78,500 KB
testcase_06 AC 330 ms
78,672 KB
testcase_07 AC 135 ms
77,204 KB
testcase_08 AC 132 ms
77,100 KB
testcase_09 AC 277 ms
78,140 KB
testcase_10 AC 293 ms
78,252 KB
testcase_11 AC 252 ms
80,108 KB
testcase_12 AC 235 ms
79,780 KB
testcase_13 AC 222 ms
79,224 KB
testcase_14 AC 192 ms
78,484 KB
testcase_15 AC 129 ms
77,296 KB
testcase_16 AC 214 ms
79,164 KB
testcase_17 AC 132 ms
77,192 KB
testcase_18 AC 219 ms
79,260 KB
testcase_19 AC 252 ms
80,080 KB
testcase_20 AC 262 ms
80,148 KB
testcase_21 AC 265 ms
80,364 KB
testcase_22 AC 131 ms
77,124 KB
testcase_23 AC 282 ms
78,304 KB
testcase_24 AC 201 ms
78,572 KB
testcase_25 AC 208 ms
79,188 KB
testcase_26 AC 225 ms
79,360 KB
testcase_27 AC 252 ms
80,264 KB
testcase_28 AC 255 ms
79,800 KB
testcase_29 AC 115 ms
77,248 KB
testcase_30 AC 95 ms
76,676 KB
testcase_31 AC 257 ms
80,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b = map(int,input().split())
n,k = map(int,input().split())
MOD = 10**9+7
A = [1]*(n+1)
for i in range(1,n+1):
    A[i] = (A[i-1]*i)%MOD
B = [1]*(n+1)
B[n] = pow(A[n],MOD-2,MOD)
for i in range(n-1,0,-1):
    B[i] = (B[i+1]*(i+1))%MOD
def comb(s,t):
    if t<0 or t>s:
        return 0
    if t==0 or t==s:
        return 1
    return (A[s]*B[t]*B[s-t])%MOD
ans = a*comb(n-1,k-1)+b*comb(n-1,n+1-k)
print(ans%MOD)
cnt = 0
for j in range(1,n+2):
    cnt = (cnt+(comb(n-1,j-1)*a+comb(n-1,n+1-j)*b)**2)%MOD
print(cnt)
0