結果

問題 No.1127 変形パスカルの三角形
ユーザー trineutrontrineutron
提出日時 2020-07-26 16:29:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,244 ms / 1,500 ms
コード長 477 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,240 KB
最終ジャッジ日時 2024-06-28 17:15:22
合計ジャッジ時間 24,155 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 1,244 ms
26,240 KB
testcase_02 AC 871 ms
21,504 KB
testcase_03 AC 653 ms
18,688 KB
testcase_04 AC 180 ms
12,416 KB
testcase_05 AC 583 ms
17,664 KB
testcase_06 AC 1,234 ms
26,112 KB
testcase_07 AC 381 ms
15,104 KB
testcase_08 AC 366 ms
14,976 KB
testcase_09 AC 1,020 ms
23,424 KB
testcase_10 AC 1,037 ms
23,808 KB
testcase_11 AC 871 ms
21,760 KB
testcase_12 AC 809 ms
20,608 KB
testcase_13 AC 754 ms
20,096 KB
testcase_14 AC 616 ms
18,176 KB
testcase_15 AC 328 ms
14,592 KB
testcase_16 AC 690 ms
19,200 KB
testcase_17 AC 355 ms
14,720 KB
testcase_18 AC 738 ms
19,712 KB
testcase_19 AC 874 ms
21,632 KB
testcase_20 AC 918 ms
22,016 KB
testcase_21 AC 937 ms
22,400 KB
testcase_22 AC 345 ms
14,720 KB
testcase_23 AC 1,052 ms
23,680 KB
testcase_24 AC 649 ms
18,560 KB
testcase_25 AC 691 ms
19,328 KB
testcase_26 AC 755 ms
20,224 KB
testcase_27 AC 878 ms
21,632 KB
testcase_28 AC 862 ms
21,504 KB
testcase_29 AC 323 ms
14,208 KB
testcase_30 AC 232 ms
13,312 KB
testcase_31 AC 930 ms
22,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9 + 7
a, b = map(int, input().split())
n, k = map(int, input().split())
f = [1]
for i in range(n):
    f.append(f[i] * (i + 1) % mod)
inv = [pow(f[i], mod - 2, mod) for i in range(n + 1)]

def ncr(n, r):
    if r < 0 or n < r:
        return 0
    return f[n] * inv[r] * inv[n - r] % mod

print((a * ncr(n - 1, k - 1) + b * ncr(n - 1, k - 2)) % mod)
ans = 0
for i in range(n + 1):
    ans += (a * ncr(n - 1, i) + b * ncr(n - 1, i - 1)) ** 2
    ans %= mod
print(ans)
0