結果

問題 No.794 チーム戦 (2)
ユーザー htkbhtkb
提出日時 2019-02-23 00:25:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 393 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,776 KB
最終ジャッジ日時 2024-11-26 07:48:15
合計ジャッジ時間 8,530 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 WA -
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 26 ms
10,624 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 26 ms
10,624 KB
testcase_13 AC 27 ms
10,752 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 366 ms
32,512 KB
testcase_17 AC 391 ms
32,644 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 384 ms
32,644 KB
testcase_21 AC 385 ms
32,384 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 147 ms
18,532 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 260 ms
20,424 KB
testcase_30 AC 264 ms
19,140 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
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_left(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