結果

問題 No.1127 変形パスカルの三角形
ユーザー eSeFeSeF
提出日時 2020-07-26 12:08:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 1,500 ms
コード長 290 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 62,480 KB
最終ジャッジ日時 2024-06-28 11:45:18
合計ジャッジ時間 2,587 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,148 KB
testcase_01 AC 46 ms
62,480 KB
testcase_02 AC 45 ms
59,920 KB
testcase_03 AC 44 ms
60,716 KB
testcase_04 AC 40 ms
59,384 KB
testcase_05 AC 43 ms
60,552 KB
testcase_06 AC 46 ms
62,220 KB
testcase_07 AC 44 ms
59,964 KB
testcase_08 AC 43 ms
58,912 KB
testcase_09 AC 46 ms
60,196 KB
testcase_10 AC 48 ms
60,600 KB
testcase_11 AC 46 ms
60,576 KB
testcase_12 AC 46 ms
60,428 KB
testcase_13 AC 47 ms
60,028 KB
testcase_14 AC 45 ms
59,732 KB
testcase_15 AC 44 ms
58,404 KB
testcase_16 AC 45 ms
60,164 KB
testcase_17 AC 42 ms
59,412 KB
testcase_18 AC 44 ms
61,116 KB
testcase_19 AC 45 ms
60,176 KB
testcase_20 AC 45 ms
60,388 KB
testcase_21 AC 45 ms
60,844 KB
testcase_22 AC 42 ms
60,224 KB
testcase_23 AC 46 ms
61,656 KB
testcase_24 AC 43 ms
60,316 KB
testcase_25 AC 43 ms
59,760 KB
testcase_26 AC 45 ms
60,608 KB
testcase_27 AC 45 ms
59,928 KB
testcase_28 AC 45 ms
60,316 KB
testcase_29 AC 45 ms
58,904 KB
testcase_30 AC 44 ms
59,876 KB
testcase_31 AC 45 ms
60,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=map(int,input().split())
n,k=map(int,input().split())
m=int(1e9)+7
f=[1]*(2*n+1)
for i in range(2*n):
    f[i+1]=(f[i]*(i+1))%m
def c(i,j):
    return f[i]*(pow(f[j]*f[i-j],m-2,m))
def d(i,j):
    return (c(i-1,j-1)*a+c(i-1,j-2)*b)%m
print(d(n,k))
print((a*d(2*n-1,n)+b*d(2*n-1,n+1))%m)
0