結果

問題 No.1127 変形パスカルの三角形
ユーザー tonegawatonegawa
提出日時 2020-08-18 09:58:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,028 ms / 1,500 ms
コード長 744 bytes
コンパイル時間 778 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 98,932 KB
最終ジャッジ日時 2024-10-12 00:25:16
合計ジャッジ時間 16,028 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 1,028 ms
98,368 KB
testcase_02 AC 508 ms
87,984 KB
testcase_03 AC 359 ms
85,888 KB
testcase_04 AC 92 ms
77,952 KB
testcase_05 AC 303 ms
84,328 KB
testcase_06 AC 1,024 ms
98,932 KB
testcase_07 AC 184 ms
81,664 KB
testcase_08 AC 171 ms
80,204 KB
testcase_09 AC 780 ms
93,236 KB
testcase_10 AC 755 ms
94,564 KB
testcase_11 AC 580 ms
90,064 KB
testcase_12 AC 539 ms
88,076 KB
testcase_13 AC 417 ms
88,684 KB
testcase_14 AC 327 ms
85,260 KB
testcase_15 AC 152 ms
80,256 KB
testcase_16 AC 371 ms
85,476 KB
testcase_17 AC 170 ms
81,340 KB
testcase_18 AC 424 ms
86,092 KB
testcase_19 AC 576 ms
89,292 KB
testcase_20 AC 654 ms
91,440 KB
testcase_21 AC 618 ms
92,240 KB
testcase_22 AC 167 ms
80,804 KB
testcase_23 AC 725 ms
94,544 KB
testcase_24 AC 386 ms
86,920 KB
testcase_25 AC 421 ms
86,948 KB
testcase_26 AC 503 ms
88,840 KB
testcase_27 AC 560 ms
88,588 KB
testcase_28 AC 588 ms
90,180 KB
testcase_29 AC 154 ms
81,124 KB
testcase_30 AC 113 ms
78,976 KB
testcase_31 AC 663 ms
91,728 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