結果

問題 No.1127 変形パスカルの三角形
ユーザー rlangevinrlangevin
提出日時 2023-01-02 02:10:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 324 ms / 1,500 ms
コード長 646 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 85,888 KB
最終ジャッジ日時 2024-05-05 06:03:54
合計ジャッジ時間 8,121 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
66,176 KB
testcase_01 AC 323 ms
83,584 KB
testcase_02 AC 251 ms
85,504 KB
testcase_03 AC 198 ms
85,120 KB
testcase_04 AC 109 ms
83,712 KB
testcase_05 AC 194 ms
84,608 KB
testcase_06 AC 324 ms
83,712 KB
testcase_07 AC 149 ms
84,224 KB
testcase_08 AC 146 ms
83,968 KB
testcase_09 AC 273 ms
83,328 KB
testcase_10 AC 284 ms
83,584 KB
testcase_11 AC 253 ms
85,632 KB
testcase_12 AC 237 ms
85,248 KB
testcase_13 AC 224 ms
85,120 KB
testcase_14 AC 199 ms
84,864 KB
testcase_15 AC 140 ms
84,352 KB
testcase_16 AC 211 ms
84,864 KB
testcase_17 AC 142 ms
84,096 KB
testcase_18 AC 218 ms
85,120 KB
testcase_19 AC 251 ms
85,504 KB
testcase_20 AC 253 ms
85,760 KB
testcase_21 AC 262 ms
85,760 KB
testcase_22 AC 141 ms
84,352 KB
testcase_23 AC 276 ms
83,584 KB
testcase_24 AC 204 ms
84,992 KB
testcase_25 AC 211 ms
84,992 KB
testcase_26 AC 224 ms
85,376 KB
testcase_27 AC 247 ms
85,888 KB
testcase_28 AC 246 ms
85,376 KB
testcase_29 AC 132 ms
84,352 KB
testcase_30 AC 114 ms
84,096 KB
testcase_31 AC 261 ms
85,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = map(int, input().split())
N, K = map(int, input().split())
mod = 10 ** 9 + 7

n = 505050

fact = [1] * (n + 1)
invfact = [1] * (n + 1)
for i in range(1, n):
    fact[i + 1] = ((i+1) * fact[i]) % mod
invfact[n] = pow(fact[n], mod - 2, mod)
for i in range(n - 1, -1, -1):
    invfact[i] = invfact[i + 1] * (i + 1) % mod

def comb(n, r):
    if n < 0 or r < 0 or n - r < 0:
        return 0
    return fact[n] * invfact[r] * invfact[n - r] % mod

ans = comb(N - 1, K - 1) * a + comb(N - 1, K - 2) * b
print(ans%mod)
ans = a**2 + b**2
for i in range(1, N):
    ans += (comb(N - 1, i) * a + comb(N - 1, i - 1) * b)**2 
    ans %= mod
print(ans)
0