結果

問題 No.1785 Inequality Signs
ユーザー nasubi24nasubi24
提出日時 2021-12-14 00:19:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 361 ms / 2,000 ms
コード長 627 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-07-23 00:20:03
合計ジャッジ時間 12,717 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 107 ms
65,536 KB
testcase_02 AC 279 ms
72,704 KB
testcase_03 AC 349 ms
69,504 KB
testcase_04 AC 64 ms
63,616 KB
testcase_05 AC 187 ms
68,864 KB
testcase_06 AC 320 ms
68,864 KB
testcase_07 AC 68 ms
64,128 KB
testcase_08 AC 309 ms
68,992 KB
testcase_09 AC 104 ms
65,664 KB
testcase_10 AC 245 ms
71,168 KB
testcase_11 AC 114 ms
66,176 KB
testcase_12 AC 164 ms
68,096 KB
testcase_13 AC 97 ms
65,280 KB
testcase_14 AC 201 ms
69,504 KB
testcase_15 AC 175 ms
68,480 KB
testcase_16 AC 145 ms
66,816 KB
testcase_17 AC 249 ms
71,424 KB
testcase_18 AC 245 ms
71,620 KB
testcase_19 AC 208 ms
69,888 KB
testcase_20 AC 225 ms
70,528 KB
testcase_21 AC 214 ms
70,016 KB
testcase_22 AC 110 ms
65,792 KB
testcase_23 AC 141 ms
67,200 KB
testcase_24 AC 350 ms
69,760 KB
testcase_25 AC 174 ms
68,224 KB
testcase_26 AC 169 ms
68,224 KB
testcase_27 AC 356 ms
70,400 KB
testcase_28 AC 353 ms
69,760 KB
testcase_29 AC 360 ms
70,016 KB
testcase_30 AC 358 ms
69,632 KB
testcase_31 AC 361 ms
69,888 KB
testcase_32 AC 359 ms
69,760 KB
testcase_33 AC 40 ms
51,712 KB
testcase_34 AC 70 ms
65,536 KB
testcase_35 AC 85 ms
67,328 KB
testcase_36 AC 262 ms
69,760 KB
testcase_37 AC 221 ms
70,272 KB
testcase_38 AC 201 ms
69,760 KB
testcase_39 AC 116 ms
68,736 KB
testcase_40 AC 143 ms
70,528 KB
testcase_41 AC 185 ms
74,368 KB
testcase_42 AC 297 ms
70,784 KB
testcase_43 AC 341 ms
70,528 KB
testcase_44 AC 294 ms
69,376 KB
testcase_45 AC 128 ms
70,528 KB
testcase_46 AC 197 ms
69,760 KB
testcase_47 AC 156 ms
73,472 KB
testcase_48 AC 205 ms
76,160 KB
testcase_49 AC 67 ms
65,600 KB
testcase_50 AC 293 ms
69,376 KB
testcase_51 AC 83 ms
66,560 KB
testcase_52 AC 72 ms
64,512 KB
testcase_53 AC 96 ms
66,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
mod=10**9+7
fac=[0]*(2*n+2)
cnt=1
fac[0]=1
for i in range(2*n+1):
    cnt*=k+n-i
    cnt%=mod
    fac[i+1]=cnt
fac2=[0]*(n+2)
fac2[0]=1
cnt=1
for i in range(n+1):
    cnt*=i+1
    cnt%=mod
    fac2[i+1]=cnt
gya=[0]*(n+2)
cnt=1
gya[0]=1
for i in range(n+1):
    cnt*=pow(i+1,mod-2,mod)
    cnt%=mod
    gya[i+1]=cnt
ans=0
for i in range(n):
    if i<=k-1:
        num=fac2[n-1]*gya[n-i-1]%mod
        num*=gya[i]
        num%=mod
        # k+n-1-i C n
        num2=(fac[i+n+1]*pow(fac[i+1],mod-2,mod))%mod
        num2*=gya[n]
        num2%=mod
        ans+=num*num2%mod
        ans%=mod
print(ans)
0