結果

問題 No.794 チーム戦 (2)
ユーザー 双六双六
提出日時 2020-07-21 22:58:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 196 ms / 1,500 ms
コード長 967 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 109,992 KB
最終ジャッジ日時 2024-06-10 03:40:19
合計ジャッジ時間 5,136 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,400 KB
testcase_01 AC 43 ms
54,400 KB
testcase_02 AC 40 ms
54,016 KB
testcase_03 AC 41 ms
54,400 KB
testcase_04 AC 41 ms
54,528 KB
testcase_05 AC 41 ms
54,016 KB
testcase_06 AC 42 ms
54,016 KB
testcase_07 AC 40 ms
53,888 KB
testcase_08 AC 42 ms
54,144 KB
testcase_09 AC 39 ms
53,888 KB
testcase_10 AC 40 ms
53,888 KB
testcase_11 AC 41 ms
54,400 KB
testcase_12 AC 40 ms
54,272 KB
testcase_13 AC 39 ms
53,888 KB
testcase_14 AC 160 ms
109,568 KB
testcase_15 AC 152 ms
109,748 KB
testcase_16 AC 154 ms
109,840 KB
testcase_17 AC 130 ms
109,124 KB
testcase_18 AC 195 ms
109,628 KB
testcase_19 AC 194 ms
109,600 KB
testcase_20 AC 192 ms
109,536 KB
testcase_21 AC 196 ms
109,992 KB
testcase_22 AC 137 ms
96,092 KB
testcase_23 AC 119 ms
94,092 KB
testcase_24 AC 119 ms
89,648 KB
testcase_25 AC 111 ms
86,788 KB
testcase_26 AC 110 ms
88,156 KB
testcase_27 AC 140 ms
108,160 KB
testcase_28 AC 141 ms
108,320 KB
testcase_29 AC 113 ms
108,212 KB
testcase_30 AC 91 ms
100,796 KB
testcase_31 AC 166 ms
105,072 KB
testcase_32 AC 163 ms
104,532 KB
testcase_33 AC 155 ms
107,772 KB
testcase_34 AC 156 ms
107,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")
import bisect

def getlist():
	return list(map(int, input().split()))

def inverse(N, mod):
	return (pow(N, mod - 2, mod))

#処理内容
def main():
	N, K = getlist()
	n = int(N // 2)
	A = list(sorted(getlist()))
	ans = 1
	stop = None
	for i in range(n):
		ind = N - 1 - i
		ind2 = bisect.bisect_left(A, K - A[ind] + 1) - 1
		if ind2 < ind:
			if ind2 + 1 - i > 0:
				ans = (ans * (ind2 + 1 - i)) % con
			else:
				ans = 0
				stop = INF
				break
		else:
			stop = n - i
			break

	if stop == INF:
		print(0)
		return
	elif stop == None:
		print(ans)
		return

	for i in range(1, 2 * stop + 1):
		ans *= i
		ans %= con

	inv_2 = inverse(2, con)
	for i in range(stop):
		ans *= inv_2
		ans %= con

	for i in range(1, stop + 1):
		ans *= inverse(i, con)
		ans %= con

	print(ans)


if __name__ == '__main__':
	main()
0