結果

問題 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
コンパイル時間 204 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,772 KB
最終ジャッジ日時 2024-05-04 18:13:39
合計ジャッジ時間 8,111 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 25 ms
10,880 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 WA -
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 24 ms
10,880 KB
testcase_08 AC 25 ms
10,880 KB
testcase_09 AC 25 ms
10,752 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 25 ms
10,880 KB
testcase_13 AC 25 ms
10,752 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 365 ms
32,640 KB
testcase_17 AC 357 ms
32,644 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 385 ms
32,644 KB
testcase_21 AC 380 ms
32,640 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 152 ms
18,668 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 269 ms
20,424 KB
testcase_30 AC 263 ms
19,144 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