結果

問題 No.1785 Inequality Signs
ユーザー rlangevinrlangevin
提出日時 2023-04-30 15:35:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 599 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 79,076 KB
最終ジャッジ日時 2024-11-19 06:38:21
合計ジャッジ時間 10,345 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
62,732 KB
testcase_01 AC 91 ms
78,756 KB
testcase_02 AC 200 ms
78,772 KB
testcase_03 AC 243 ms
78,684 KB
testcase_04 AC 59 ms
66,660 KB
testcase_05 AC 140 ms
78,540 KB
testcase_06 AC 225 ms
78,832 KB
testcase_07 AC 63 ms
68,556 KB
testcase_08 AC 220 ms
78,956 KB
testcase_09 AC 88 ms
77,012 KB
testcase_10 AC 178 ms
78,736 KB
testcase_11 AC 99 ms
78,984 KB
testcase_12 AC 128 ms
78,720 KB
testcase_13 AC 84 ms
75,828 KB
testcase_14 AC 150 ms
78,480 KB
testcase_15 AC 134 ms
78,544 KB
testcase_16 AC 116 ms
78,908 KB
testcase_17 AC 181 ms
78,792 KB
testcase_18 AC 177 ms
78,668 KB
testcase_19 AC 154 ms
78,648 KB
testcase_20 AC 166 ms
78,656 KB
testcase_21 AC 155 ms
78,616 KB
testcase_22 AC 94 ms
78,776 KB
testcase_23 AC 113 ms
78,600 KB
testcase_24 AC 245 ms
78,640 KB
testcase_25 AC 133 ms
78,660 KB
testcase_26 AC 129 ms
78,592 KB
testcase_27 AC 252 ms
78,520 KB
testcase_28 AC 249 ms
78,768 KB
testcase_29 AC 253 ms
78,632 KB
testcase_30 AC 254 ms
78,588 KB
testcase_31 AC 256 ms
78,676 KB
testcase_32 AC 252 ms
78,664 KB
testcase_33 AC 49 ms
62,464 KB
testcase_34 AC 68 ms
70,156 KB
testcase_35 AC 84 ms
71,704 KB
testcase_36 AC 211 ms
78,520 KB
testcase_37 AC 216 ms
78,748 KB
testcase_38 AC 194 ms
78,664 KB
testcase_39 AC 103 ms
78,648 KB
testcase_40 AC 123 ms
78,848 KB
testcase_41 AC 158 ms
78,752 KB
testcase_42 AC 238 ms
78,600 KB
testcase_43 AC 245 ms
78,612 KB
testcase_44 AC 216 ms
78,716 KB
testcase_45 AC 117 ms
78,744 KB
testcase_46 AC 193 ms
78,720 KB
testcase_47 AC 142 ms
78,720 KB
testcase_48 AC 169 ms
79,076 KB
testcase_49 AC 67 ms
67,584 KB
testcase_50 AC 214 ms
78,592 KB
testcase_51 AC 73 ms
71,552 KB
testcase_52 AC 68 ms
69,248 KB
testcase_53 AC 81 ms
74,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

n = 202020

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
    
now = K + N - 1
val = 1
for i in range(N):
    val *= now - i
    val %= mod
    
ans = 0
inv = pow(N, mod - 2, mod)
for m in range(N):
    ans += inv * invfact[m] * invfact[N - 1 - m] * val
    ans %= mod
    val *= pow(now, mod - 2, mod)
    val *= now - N
    val %= mod
    now -= 1
    
print(ans)
0