結果

問題 No.794 チーム戦 (2)
ユーザー titiatitia
提出日時 2019-02-22 22:35:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 343 ms / 1,500 ms
コード長 600 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,664 KB
最終ジャッジ日時 2024-05-04 03:27:50
合計ジャッジ時間 5,780 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 AC 26 ms
10,880 KB
testcase_14 AC 328 ms
32,664 KB
testcase_15 AC 332 ms
32,664 KB
testcase_16 AC 343 ms
32,660 KB
testcase_17 AC 309 ms
32,660 KB
testcase_18 AC 168 ms
32,532 KB
testcase_19 AC 165 ms
32,528 KB
testcase_20 AC 166 ms
32,664 KB
testcase_21 AC 164 ms
32,532 KB
testcase_22 AC 162 ms
23,924 KB
testcase_23 AC 182 ms
22,608 KB
testcase_24 AC 91 ms
20,112 KB
testcase_25 AC 78 ms
18,564 KB
testcase_26 AC 125 ms
19,408 KB
testcase_27 AC 226 ms
13,952 KB
testcase_28 AC 208 ms
14,080 KB
testcase_29 AC 208 ms
14,076 KB
testcase_30 AC 106 ms
14,080 KB
testcase_31 AC 103 ms
14,016 KB
testcase_32 AC 100 ms
13,952 KB
testcase_33 AC 142 ms
14,076 KB
testcase_34 AC 137 ms
13,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,K=map(int,input().split())
A=list(map(int,input().split()))
mod=10**9+7

A.sort(reverse=True)

LIST=[-1]*N

for j in range(N):
    if A[0]+A[j]<=K:
        break
else:
    print(0)
    sys.exit()

if j>1:
    LIST[0]=j

    i=1
    while j>i+1:
        if A[i]+A[j-1]<=K:
            j-=1
        else:
            LIST[i]=j
            i+=1

ANS=1
for i in range(N//2):
    if LIST[i]!=-1:
        ANS=ANS*max(0,(N-LIST[i]-i))%mod
    else:
        rest=N-2*i
        for j in range(1,rest,2):
            ANS=ANS*j%mod

        print(ANS)
        sys.exit()
0