結果

問題 No.1127 変形パスカルの三角形
ユーザー lloyzlloyz
提出日時 2022-07-18 00:47:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 1,500 ms
コード長 684 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 81,872 KB
実行使用メモリ 68,556 KB
最終ジャッジ日時 2024-06-30 01:13:32
合計ジャッジ時間 3,057 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,572 KB
testcase_01 AC 68 ms
67,460 KB
testcase_02 AC 58 ms
67,192 KB
testcase_03 AC 56 ms
66,648 KB
testcase_04 AC 46 ms
63,268 KB
testcase_05 AC 54 ms
66,152 KB
testcase_06 AC 64 ms
67,180 KB
testcase_07 AC 49 ms
64,744 KB
testcase_08 AC 57 ms
64,120 KB
testcase_09 AC 61 ms
67,640 KB
testcase_10 AC 59 ms
65,368 KB
testcase_11 AC 59 ms
67,688 KB
testcase_12 AC 57 ms
66,784 KB
testcase_13 AC 56 ms
67,064 KB
testcase_14 AC 57 ms
66,272 KB
testcase_15 AC 51 ms
63,900 KB
testcase_16 AC 59 ms
67,212 KB
testcase_17 AC 53 ms
65,308 KB
testcase_18 AC 58 ms
66,208 KB
testcase_19 AC 61 ms
67,516 KB
testcase_20 AC 61 ms
67,488 KB
testcase_21 AC 63 ms
67,716 KB
testcase_22 AC 52 ms
64,300 KB
testcase_23 AC 63 ms
66,584 KB
testcase_24 AC 54 ms
65,564 KB
testcase_25 AC 56 ms
66,620 KB
testcase_26 AC 59 ms
66,580 KB
testcase_27 AC 61 ms
67,560 KB
testcase_28 AC 62 ms
68,556 KB
testcase_29 AC 51 ms
65,108 KB
testcase_30 AC 50 ms
63,244 KB
testcase_31 AC 61 ms
67,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = map(int, input().split())
n, k = map(int, input().split())
mod = 10**9 + 7
a %= mod
b %= mod

fact = [1] * n
inv = [1] * n
finv = [1] * n
for i in range(2, n):
    fact[i] = fact[i - 1] * i % mod
    inv[i] = mod - inv[mod % i] * (mod // i) % mod
    finv[i] = finv[i - 1] * inv[i] % mod
def comb(x, y):
    if x < 0 or y < 0 or x - y < 0:
        return 0
    return fact[x] * finv[y] % mod * finv[x - y] % mod

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

0