結果

問題 No.794 チーム戦 (2)
ユーザー 草苺奶昔草苺奶昔
提出日時 2024-09-09 00:14:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 627 bytes
コンパイル時間 484 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,056 KB
最終ジャッジ日時 2024-09-09 00:15:01
合計ジャッジ時間 7,700 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 265 ms
32,796 KB
testcase_17 AC 263 ms
33,052 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 183 ms
14,628 KB
testcase_30 AC 179 ms
14,628 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = 998244353


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