結果

問題 No.794 チーム戦 (2)
ユーザー htkbhtkb
提出日時 2019-02-23 00:26:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 377 ms / 1,500 ms
コード長 395 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,768 KB
最終ジャッジ日時 2024-05-04 18:16:20
合計ジャッジ時間 7,664 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
11,008 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 25 ms
10,880 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 25 ms
10,880 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 26 ms
10,880 KB
testcase_09 AC 28 ms
10,880 KB
testcase_10 AC 26 ms
10,880 KB
testcase_11 AC 26 ms
10,880 KB
testcase_12 AC 25 ms
10,880 KB
testcase_13 AC 25 ms
10,752 KB
testcase_14 AC 354 ms
32,644 KB
testcase_15 AC 351 ms
32,648 KB
testcase_16 AC 352 ms
32,640 KB
testcase_17 AC 345 ms
32,644 KB
testcase_18 AC 377 ms
32,648 KB
testcase_19 AC 370 ms
32,584 KB
testcase_20 AC 376 ms
32,644 KB
testcase_21 AC 377 ms
32,768 KB
testcase_22 AC 221 ms
24,152 KB
testcase_23 AC 192 ms
22,588 KB
testcase_24 AC 167 ms
20,832 KB
testcase_25 AC 140 ms
18,660 KB
testcase_26 AC 149 ms
19,388 KB
testcase_27 AC 267 ms
21,704 KB
testcase_28 AC 276 ms
21,708 KB
testcase_29 AC 277 ms
21,700 KB
testcase_30 AC 265 ms
20,548 KB
testcase_31 AC 300 ms
21,700 KB
testcase_32 AC 295 ms
21,704 KB
testcase_33 AC 288 ms
21,832 KB
testcase_34 AC 287 ms
21,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right
from itertools import accumulate
N, K = map(int, input().split())
a = sorted(map(int, input().split()))
b = [0]*(N+1)
ans = 1
mod = 10**9+7

for i, n in enumerate(a):
    j = bisect_right(a, K-n)
    if j > i+1:
        b[i+1] += 1
        b[j] -= 1

b = list(accumulate(b))

for i, c in enumerate(b[-2:N//2-1:-1]):
    ans = ans * max(0, (c-i)) % mod

print(ans)
0