結果

問題 No.1785 Inequality Signs
ユーザー lloyzlloyz
提出日時 2021-12-20 00:10:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,021 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 82,560 KB
最終ジャッジ日時 2024-09-15 15:00:14
合計ジャッジ時間 12,544 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 174 ms
77,440 KB
testcase_02 AC 293 ms
82,560 KB
testcase_03 AC 300 ms
80,384 KB
testcase_04 AC 98 ms
76,032 KB
testcase_05 AC 225 ms
80,000 KB
testcase_06 AC 304 ms
80,256 KB
testcase_07 AC 106 ms
75,776 KB
testcase_08 AC 283 ms
79,744 KB
testcase_09 AC 137 ms
77,568 KB
testcase_10 AC 315 ms
81,280 KB
testcase_11 AC 141 ms
77,568 KB
testcase_12 AC 222 ms
79,488 KB
testcase_13 AC 132 ms
77,184 KB
testcase_14 AC 255 ms
80,384 KB
testcase_15 AC 182 ms
79,616 KB
testcase_16 AC 165 ms
78,336 KB
testcase_17 AC 306 ms
82,176 KB
testcase_18 AC 237 ms
81,536 KB
testcase_19 AC 216 ms
80,768 KB
testcase_20 AC 221 ms
81,152 KB
testcase_21 AC 213 ms
80,512 KB
testcase_22 AC 214 ms
77,440 KB
testcase_23 AC 185 ms
78,464 KB
testcase_24 AC 341 ms
80,384 KB
testcase_25 AC 215 ms
79,744 KB
testcase_26 AC 255 ms
78,976 KB
testcase_27 AC 265 ms
80,740 KB
testcase_28 AC 279 ms
81,664 KB
testcase_29 AC 294 ms
81,152 KB
testcase_30 AC 475 ms
82,176 KB
testcase_31 AC 269 ms
80,384 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 116 ms
76,288 KB
testcase_35 AC 106 ms
77,312 KB
testcase_36 AC 203 ms
80,072 KB
testcase_37 AC 138 ms
80,312 KB
testcase_38 AC 138 ms
79,752 KB
testcase_39 AC 138 ms
77,952 KB
testcase_40 AC 151 ms
78,976 KB
testcase_41 AC 166 ms
81,152 KB
testcase_42 AC 214 ms
80,644 KB
testcase_43 AC 252 ms
80,588 KB
testcase_44 AC 230 ms
80,144 KB
testcase_45 AC 135 ms
79,104 KB
testcase_46 AC 144 ms
79,880 KB
testcase_47 AC 143 ms
80,256 KB
testcase_48 AC 171 ms
81,664 KB
testcase_49 AC 97 ms
76,288 KB
testcase_50 AC 229 ms
80,088 KB
testcase_51 AC 131 ms
77,004 KB
testcase_52 AC 119 ms
76,160 KB
testcase_53 AC 132 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
mod = 10**9 + 7

# nは任意の数に置き換え可能
fact = [1] * (n + 1)
inv = [1] * (n + 1)
finv = [1] * (n + 1)
for i in range(2, n + 1):
    fact[i] = fact[i - 1] * i % mod
    inv[i] = mod - inv[mod % i] * (mod // i) % mod
    finv[i] = finv[i - 1] * inv[i] % mod

def comb(a, b):
    return fact[a] * finv[b] * finv[a - b] % mod
def extgcd(a, b):
    if b != 0:
        d, y, x = extgcd(b, a % b)
        y -= (a // b) * x
        return d, x, y
    return a, 1, 0
def inverse(a, m):
    d, x, _ = extgcd(a, m)
    if d != 1:
        return -1
    return x % m

ans = 0
cnt = 1
if k - 1 >= n:
    for i in range(1, n + 1):
        cnt *= k - i + 1
        cnt *= inv[i]
        cnt %= mod
    ans += cnt

for i in range(1, n):
    if k + i > n:
        cnt *= k + i
        cnt *= inverse(k + i - n, mod)
        cnt %= mod
        ans += cnt * comb(n - 1, i) % mod
        ans %= mod
    elif k + i == n:
        ans += cnt * comb(n - 1, i) % mod
        ans %= mod
print(ans)
0