結果

問題 No.794 チーム戦 (2)
ユーザー 草苺奶昔草苺奶昔
提出日時 2024-09-09 00:15:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 313 ms / 1,500 ms
コード長 630 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,644 KB
最終ジャッジ日時 2024-09-09 00:15:19
合計ジャッジ時間 7,400 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 313 ms
32,520 KB
testcase_15 AC 298 ms
32,520 KB
testcase_16 AC 290 ms
32,644 KB
testcase_17 AC 285 ms
32,392 KB
testcase_18 AC 288 ms
32,516 KB
testcase_19 AC 287 ms
32,512 KB
testcase_20 AC 310 ms
32,512 KB
testcase_21 AC 292 ms
32,512 KB
testcase_22 AC 185 ms
23,900 KB
testcase_23 AC 165 ms
22,592 KB
testcase_24 AC 133 ms
19,964 KB
testcase_25 AC 117 ms
18,408 KB
testcase_26 AC 125 ms
19,264 KB
testcase_27 AC 190 ms
14,044 KB
testcase_28 AC 191 ms
13,912 KB
testcase_29 AC 189 ms
13,916 KB
testcase_30 AC 180 ms
13,912 KB
testcase_31 AC 189 ms
13,908 KB
testcase_32 AC 191 ms
13,912 KB
testcase_33 AC 192 ms
13,916 KB
testcase_34 AC 191 ms
13,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# No.794 チーム戦 (2)
# 给定长为偶数n的数组nums,求和不超过k的二元对数的分配方案数。
# https://yukicoder.me/problems/no/794
#

from bisect import bisect_right
import sys


input = lambda: sys.stdin.readline().rstrip("\r\n")
MOD = int(1e9 + 7)


def min2(a: int, b: int) -> int:
    return a if a < b else b


if __name__ == "__main__":
    n, k = map(int, input().split())
    nums = list(map(int, input().split()))

    nums.sort()
    res = 1
    for i in range(n // 2):
        pos = bisect_right(nums, k - nums[-i - 1])
        res *= min2(n - i - 1, pos) - i
        res %= MOD

    print(res)
0