結果

問題 No.1127 変形パスカルの三角形
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-11-21 14:29:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 523 ms / 1,500 ms
コード長 952 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 26,496 KB
最終ジャッジ日時 2024-07-23 15:37:50
合計ジャッジ時間 10,798 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 523 ms
26,496 KB
testcase_02 AC 364 ms
21,632 KB
testcase_03 AC 276 ms
18,688 KB
testcase_04 AC 90 ms
12,672 KB
testcase_05 AC 254 ms
18,048 KB
testcase_06 AC 509 ms
26,368 KB
testcase_07 AC 170 ms
15,232 KB
testcase_08 AC 165 ms
15,104 KB
testcase_09 AC 426 ms
23,680 KB
testcase_10 AC 438 ms
23,936 KB
testcase_11 AC 372 ms
21,760 KB
testcase_12 AC 342 ms
20,864 KB
testcase_13 AC 327 ms
20,096 KB
testcase_14 AC 269 ms
18,432 KB
testcase_15 AC 152 ms
14,592 KB
testcase_16 AC 299 ms
19,200 KB
testcase_17 AC 159 ms
14,976 KB
testcase_18 AC 314 ms
19,968 KB
testcase_19 AC 376 ms
22,016 KB
testcase_20 AC 382 ms
22,144 KB
testcase_21 AC 390 ms
22,400 KB
testcase_22 AC 157 ms
14,976 KB
testcase_23 AC 435 ms
23,680 KB
testcase_24 AC 282 ms
18,688 KB
testcase_25 AC 297 ms
19,328 KB
testcase_26 AC 321 ms
20,224 KB
testcase_27 AC 367 ms
21,760 KB
testcase_28 AC 367 ms
21,504 KB
testcase_29 AC 146 ms
14,592 KB
testcase_30 AC 108 ms
13,440 KB
testcase_31 AC 390 ms
22,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7
class counting:
    def __init__(self, n):
        self.n = n
        self.fa = [1] * (self.n + 1)
        self.fi = [1] * (self.n + 1)
        for i in range(1, self.n + 1):
            self.fa[i] = self.fa[i - 1] * i % mod
        self.fi[-1] = pow(self.fa[-1], mod - 2, mod)
        for i in range(self.n, 0, -1):
            self.fi[i - 1] = self.fi[i] * i % mod
    def comb(self, n, r):
        if n < r:return 0
        if n < 0 or r < 0:return 0
        return self.fa[n] * self.fi[r] % mod * self.fi[n - r] % mod
    def per(self, n, r):
        if n < r:return 0
        if n < 0 or r < 0:return 0
        return self.fa[n] * self.fi[n - r] % mod
a, b = map(int, input().split())
n, k = map(int, input().split())
C = counting(n)
print((a * C.comb(n - 1, k - 1) + b * C.comb(n - 1, k - 2)) % mod)
ans = 0
for i in range(n + 1):
    ans += pow(a * C.comb(n - 1, i) + b * C.comb(n - 1, i - 1), 2, mod)
    ans %= mod
print(ans)
0