結果

問題 No.1127 変形パスカルの三角形
ユーザー 👑 KazunKazun
提出日時 2021-01-29 18:00:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 897 ms / 1,500 ms
コード長 561 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 80,612 KB
最終ジャッジ日時 2024-06-27 04:49:26
合計ジャッジ時間 17,513 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,948 KB
testcase_01 AC 897 ms
79,084 KB
testcase_02 AC 632 ms
79,940 KB
testcase_03 AC 472 ms
78,728 KB
testcase_04 AC 156 ms
76,696 KB
testcase_05 AC 443 ms
78,812 KB
testcase_06 AC 881 ms
79,156 KB
testcase_07 AC 298 ms
77,520 KB
testcase_08 AC 289 ms
77,700 KB
testcase_09 AC 737 ms
78,488 KB
testcase_10 AC 744 ms
78,620 KB
testcase_11 AC 629 ms
80,404 KB
testcase_12 AC 590 ms
79,596 KB
testcase_13 AC 554 ms
79,444 KB
testcase_14 AC 460 ms
78,512 KB
testcase_15 AC 270 ms
77,068 KB
testcase_16 AC 505 ms
79,012 KB
testcase_17 AC 274 ms
77,736 KB
testcase_18 AC 536 ms
79,456 KB
testcase_19 AC 638 ms
80,164 KB
testcase_20 AC 660 ms
80,488 KB
testcase_21 AC 686 ms
80,612 KB
testcase_22 AC 274 ms
77,088 KB
testcase_23 AC 749 ms
78,452 KB
testcase_24 AC 478 ms
79,092 KB
testcase_25 AC 513 ms
79,224 KB
testcase_26 AC 560 ms
79,408 KB
testcase_27 AC 644 ms
79,884 KB
testcase_28 AC 633 ms
80,052 KB
testcase_29 AC 256 ms
77,088 KB
testcase_30 AC 194 ms
76,680 KB
testcase_31 AC 669 ms
80,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#================================================
def nCr(n,r):
    if 0<=r<=n:
        return (F[n]*G[r]*G[n-r])%Mod
    else:
        return 0
#================================================
Mod=10**9+7
a,b=map(int,input().split())
N,K=map(int,input().split())

F=[1]*(N+1)
for i in range(2,N+1):
    F[i]=(F[i-1]*i)%Mod

G=[1]*(N+1)
G[-1]=pow(F[-1],Mod-2,Mod)
for i in range(N-1,-1,-1):
    G[i]=(G[i+1]*(i+1))%Mod

X=0
for k in range(1,N+2):
    X+=pow(a*nCr(N-1,k-1)+b*nCr(N-1,k-2),2,Mod)
    X%=Mod

print((a*nCr(N-1,K-1)+b*nCr(N-1,K-2))%Mod,X,sep="\n")
0