結果

問題 No.1785 Inequality Signs
ユーザー KudeKude
提出日時 2021-12-14 01:00:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 80,840 KB
最終ジャッジ日時 2024-07-23 01:21:55
合計ジャッジ時間 7,838 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,964 KB
testcase_01 AC 71 ms
76,816 KB
testcase_02 AC 143 ms
80,840 KB
testcase_03 AC 175 ms
80,320 KB
testcase_04 AC 48 ms
62,540 KB
testcase_05 AC 101 ms
78,400 KB
testcase_06 AC 159 ms
79,548 KB
testcase_07 AC 50 ms
64,644 KB
testcase_08 AC 155 ms
79,388 KB
testcase_09 AC 72 ms
76,740 KB
testcase_10 AC 129 ms
80,032 KB
testcase_11 AC 75 ms
76,908 KB
testcase_12 AC 97 ms
78,004 KB
testcase_13 AC 64 ms
74,360 KB
testcase_14 AC 109 ms
79,004 KB
testcase_15 AC 99 ms
78,388 KB
testcase_16 AC 87 ms
77,556 KB
testcase_17 AC 127 ms
80,392 KB
testcase_18 AC 129 ms
80,316 KB
testcase_19 AC 113 ms
79,280 KB
testcase_20 AC 121 ms
79,612 KB
testcase_21 AC 114 ms
79,332 KB
testcase_22 AC 73 ms
76,636 KB
testcase_23 AC 86 ms
77,736 KB
testcase_24 AC 172 ms
80,016 KB
testcase_25 AC 99 ms
78,364 KB
testcase_26 AC 97 ms
78,352 KB
testcase_27 AC 175 ms
80,376 KB
testcase_28 AC 176 ms
80,256 KB
testcase_29 AC 178 ms
80,120 KB
testcase_30 AC 177 ms
80,364 KB
testcase_31 AC 177 ms
80,620 KB
testcase_32 AC 177 ms
80,220 KB
testcase_33 AC 36 ms
52,820 KB
testcase_34 AC 55 ms
66,128 KB
testcase_35 AC 64 ms
66,828 KB
testcase_36 AC 148 ms
79,436 KB
testcase_37 AC 150 ms
80,096 KB
testcase_38 AC 134 ms
79,652 KB
testcase_39 AC 79 ms
77,388 KB
testcase_40 AC 93 ms
78,076 KB
testcase_41 AC 113 ms
79,860 KB
testcase_42 AC 165 ms
80,324 KB
testcase_43 AC 175 ms
79,972 KB
testcase_44 AC 155 ms
79,468 KB
testcase_45 AC 83 ms
76,816 KB
testcase_46 AC 132 ms
79,156 KB
testcase_47 AC 104 ms
79,360 KB
testcase_48 AC 122 ms
80,256 KB
testcase_49 AC 54 ms
64,260 KB
testcase_50 AC 155 ms
79,572 KB
testcase_51 AC 59 ms
70,564 KB
testcase_52 AC 53 ms
66,856 KB
testcase_53 AC 61 ms
72,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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