結果

問題 No.1127 変形パスカルの三角形
ユーザー PCTprobabilityPCTprobability
提出日時 2020-07-23 16:31:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,186 ms / 1,500 ms
コード長 745 bytes
コンパイル時間 557 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 99,056 KB
最終ジャッジ日時 2024-06-23 17:47:16
合計ジャッジ時間 16,364 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,292 KB
testcase_01 AC 1,186 ms
98,116 KB
testcase_02 AC 570 ms
88,436 KB
testcase_03 AC 380 ms
86,148 KB
testcase_04 AC 94 ms
78,120 KB
testcase_05 AC 320 ms
84,584 KB
testcase_06 AC 1,079 ms
99,056 KB
testcase_07 AC 190 ms
81,796 KB
testcase_08 AC 172 ms
80,532 KB
testcase_09 AC 796 ms
93,568 KB
testcase_10 AC 767 ms
94,692 KB
testcase_11 AC 605 ms
90,076 KB
testcase_12 AC 524 ms
88,464 KB
testcase_13 AC 439 ms
88,620 KB
testcase_14 AC 349 ms
85,260 KB
testcase_15 AC 157 ms
80,208 KB
testcase_16 AC 391 ms
85,600 KB
testcase_17 AC 174 ms
81,472 KB
testcase_18 AC 421 ms
86,508 KB
testcase_19 AC 592 ms
89,672 KB
testcase_20 AC 668 ms
91,952 KB
testcase_21 AC 625 ms
92,628 KB
testcase_22 AC 173 ms
80,680 KB
testcase_23 AC 769 ms
94,796 KB
testcase_24 AC 401 ms
86,928 KB
testcase_25 AC 429 ms
87,084 KB
testcase_26 AC 493 ms
89,096 KB
testcase_27 AC 555 ms
88,980 KB
testcase_28 AC 578 ms
90,188 KB
testcase_29 AC 158 ms
80,840 KB
testcase_30 AC 117 ms
79,008 KB
testcase_31 AC 683 ms
92,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def cmb(n, r):
    if n - r < r: r = n - r
    if r == 0: return 1
    if r == 1: return n

    numerator = [n - r + k + 1 for k in range(r)]
    denominator = [k + 1 for k in range(r)]

    for p in range(2,r+1):
        pivot = denominator[p - 1]
        if pivot > 1:
            offset = (n - r) % p
            for k in range(p-1,r,p):
                numerator[k - offset] /= pivot
                denominator[k] /= pivot

    result = 1
    for k in range(r):
        if numerator[k] > 1:
            result *= int(numerator[k])

    return result
mod=10**9+7
a,b=map(int,input().split())
n,k=map(int,input().split())
def ans(x,y):
  return (a*cmb(x-1,y-1)+b*cmb(x-1,y-2))%mod
print(ans(n,k))
print((a*ans(2*n-1,n)+b*ans(2*n-1,n+1))%mod)
0