結果

問題 No.1785 Inequality Signs
ユーザー KudeKude
提出日時 2021-12-14 00:49:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 69,632 KB
最終ジャッジ日時 2024-07-23 01:10:25
合計ジャッジ時間 4,606 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,456 KB
testcase_01 AC 49 ms
61,696 KB
testcase_02 AC 56 ms
66,816 KB
testcase_03 AC 57 ms
66,432 KB
testcase_04 AC 46 ms
60,416 KB
testcase_05 AC 53 ms
64,256 KB
testcase_06 AC 56 ms
65,536 KB
testcase_07 AC 45 ms
60,672 KB
testcase_08 AC 56 ms
65,280 KB
testcase_09 AC 48 ms
61,824 KB
testcase_10 AC 57 ms
66,048 KB
testcase_11 AC 49 ms
62,208 KB
testcase_12 AC 51 ms
63,360 KB
testcase_13 AC 48 ms
61,568 KB
testcase_14 AC 54 ms
64,640 KB
testcase_15 AC 53 ms
63,744 KB
testcase_16 AC 50 ms
62,976 KB
testcase_17 AC 56 ms
66,048 KB
testcase_18 AC 55 ms
66,048 KB
testcase_19 AC 55 ms
64,896 KB
testcase_20 AC 59 ms
65,536 KB
testcase_21 AC 55 ms
65,024 KB
testcase_22 AC 49 ms
61,952 KB
testcase_23 AC 50 ms
62,976 KB
testcase_24 AC 57 ms
66,304 KB
testcase_25 AC 51 ms
64,000 KB
testcase_26 AC 51 ms
63,872 KB
testcase_27 AC 58 ms
66,560 KB
testcase_28 AC 59 ms
66,776 KB
testcase_29 AC 59 ms
66,688 KB
testcase_30 AC 59 ms
66,304 KB
testcase_31 AC 59 ms
66,688 KB
testcase_32 AC 58 ms
66,560 KB
testcase_33 AC 36 ms
51,712 KB
testcase_34 AC 50 ms
62,464 KB
testcase_35 AC 53 ms
63,232 KB
testcase_36 AC 59 ms
66,816 KB
testcase_37 AC 60 ms
68,096 KB
testcase_38 AC 58 ms
67,200 KB
testcase_39 AC 53 ms
64,640 KB
testcase_40 AC 56 ms
65,536 KB
testcase_41 AC 59 ms
68,608 KB
testcase_42 AC 62 ms
67,968 KB
testcase_43 AC 61 ms
67,712 KB
testcase_44 AC 59 ms
66,816 KB
testcase_45 AC 57 ms
65,536 KB
testcase_46 AC 59 ms
66,816 KB
testcase_47 AC 59 ms
67,840 KB
testcase_48 AC 62 ms
69,632 KB
testcase_49 AC 50 ms
62,336 KB
testcase_50 AC 59 ms
66,688 KB
testcase_51 AC 49 ms
62,976 KB
testcase_52 AC 46 ms
60,928 KB
testcase_53 AC 48 ms
61,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7
n, k = map(int, input().split())
fact = [1] * (n + 1)
permk = [1] * (n + 1)
pow2 = [1] * (n + 1)
for i in range(n):
    fact[i + 1] = fact[i] * (i + 1) % mod
    permk[i + 1] = permk[i] * (k - i) % mod
    pow2[i + 1] = pow2[i] * 2 % mod
ifact = [1] * (n + 1)
ifact[n] = pow(fact[n], mod - 2, mod)
for i in range(n)[::-1]:
    ifact[i] = ifact[i + 1] * (i + 1) % mod
ans = 0
for i in range(n):
    ans += permk[n - i] * ifact[n - i] % mod * fact[n - 1] % mod * ifact[n - 1 - i] % mod * ifact[i] % mod * pow2[n - 1 - i]
    ans %= mod
print(ans)
0