結果

問題 No.1127 変形パスカルの三角形
ユーザー takakintakakin
提出日時 2020-07-26 20:45:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 617 ms / 1,500 ms
コード長 599 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 42,240 KB
最終ジャッジ日時 2024-06-28 19:22:01
合計ジャッジ時間 17,912 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 347 ms
41,984 KB
testcase_01 AC 617 ms
42,112 KB
testcase_02 AC 536 ms
41,856 KB
testcase_03 AC 491 ms
41,984 KB
testcase_04 AC 391 ms
42,112 KB
testcase_05 AC 524 ms
42,112 KB
testcase_06 AC 599 ms
42,112 KB
testcase_07 AC 428 ms
41,984 KB
testcase_08 AC 464 ms
41,856 KB
testcase_09 AC 572 ms
42,112 KB
testcase_10 AC 574 ms
42,240 KB
testcase_11 AC 542 ms
41,856 KB
testcase_12 AC 532 ms
41,856 KB
testcase_13 AC 503 ms
41,984 KB
testcase_14 AC 469 ms
41,984 KB
testcase_15 AC 433 ms
41,984 KB
testcase_16 AC 526 ms
42,112 KB
testcase_17 AC 435 ms
41,984 KB
testcase_18 AC 529 ms
41,984 KB
testcase_19 AC 525 ms
41,856 KB
testcase_20 AC 544 ms
42,112 KB
testcase_21 AC 538 ms
41,856 KB
testcase_22 AC 443 ms
41,984 KB
testcase_23 AC 570 ms
42,112 KB
testcase_24 AC 519 ms
42,112 KB
testcase_25 AC 525 ms
42,112 KB
testcase_26 AC 520 ms
42,240 KB
testcase_27 AC 548 ms
42,112 KB
testcase_28 AC 528 ms
41,984 KB
testcase_29 AC 414 ms
41,984 KB
testcase_30 AC 410 ms
42,112 KB
testcase_31 AC 544 ms
41,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
mod=10**9+7
a,b=map(int,input().split())
n,k=map(int,input().split())
a%=mod
b%=mod
n_max=4*(10**5+1)
F,FI=[0]*(n_max+1),[0]*(n_max+1)
F[0],FI[0]=1,1
for i in range(n_max):
  F[i+1]=(F[i]*(i+1))%mod
FI[n_max-1]=pow(F[n_max-1],mod-2,mod)
for i in reversed(range(n_max-1)):
  FI[i]=(FI[i+1]*(i+1))%mod
def comb(x,y):
  return (F[x]*FI[x-y]*FI[y])%mod

if k==1:
	print(a%mod)
else:
	print((a*comb(n-1,k-1)+b*comb(n-1,k-2))%mod)

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