結果

問題 No.1127 変形パスカルの三角形
ユーザー tyawanmusityawanmusi
提出日時 2020-07-28 11:39:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 730 ms / 1,500 ms
コード長 384 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 89,728 KB
最終ジャッジ日時 2024-06-28 20:38:58
合計ジャッジ時間 15,178 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 730 ms
89,728 KB
testcase_02 AC 525 ms
87,424 KB
testcase_03 AC 413 ms
83,584 KB
testcase_04 AC 158 ms
77,056 KB
testcase_05 AC 378 ms
82,688 KB
testcase_06 AC 717 ms
89,344 KB
testcase_07 AC 263 ms
80,256 KB
testcase_08 AC 259 ms
79,616 KB
testcase_09 AC 603 ms
86,400 KB
testcase_10 AC 621 ms
86,656 KB
testcase_11 AC 533 ms
87,296 KB
testcase_12 AC 497 ms
86,144 KB
testcase_13 AC 464 ms
85,632 KB
testcase_14 AC 390 ms
83,712 KB
testcase_15 AC 242 ms
79,232 KB
testcase_16 AC 432 ms
84,608 KB
testcase_17 AC 248 ms
79,744 KB
testcase_18 AC 451 ms
84,608 KB
testcase_19 AC 535 ms
87,296 KB
testcase_20 AC 547 ms
87,552 KB
testcase_21 AC 546 ms
87,552 KB
testcase_22 AC 239 ms
79,616 KB
testcase_23 AC 601 ms
86,528 KB
testcase_24 AC 406 ms
83,712 KB
testcase_25 AC 434 ms
84,736 KB
testcase_26 AC 469 ms
85,632 KB
testcase_27 AC 522 ms
87,424 KB
testcase_28 AC 509 ms
87,424 KB
testcase_29 AC 235 ms
79,360 KB
testcase_30 AC 185 ms
77,952 KB
testcase_31 AC 552 ms
87,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=map(int,input().split())
n,k=map(int,input().split())
f=[1]
mod=10**9+7
for i in range(n+17):f.append(f[-1]*(i+1)%mod)
def comb(n,r):
  return f[n]*pow(f[n-r],mod-2,mod)*pow(f[r],mod-2,mod)%mod
def ff(n,k):
  ans=0
  if k!=n:
    ans+=a*comb(n-1,k)
  if k!=0:
    ans+=b*comb(n-1,k-1)
  return ans%mod
print(ff(n,k-1))
ans=0
for k in range(n+1):ans=(ans+ff(n,k)**2)%mod
print(ans)
0