結果

問題 No.794 チーム戦 (2)
ユーザー vwxyzvwxyz
提出日時 2024-04-07 09:33:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 266 ms / 1,500 ms
コード長 411 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,096 KB
最終ジャッジ日時 2024-10-01 04:24:15
合計ジャッジ時間 6,669 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 25 ms
10,752 KB
testcase_11 AC 26 ms
10,752 KB
testcase_12 AC 27 ms
10,880 KB
testcase_13 AC 28 ms
10,624 KB
testcase_14 AC 266 ms
32,836 KB
testcase_15 AC 262 ms
33,096 KB
testcase_16 AC 265 ms
32,960 KB
testcase_17 AC 254 ms
32,960 KB
testcase_18 AC 231 ms
32,964 KB
testcase_19 AC 247 ms
32,836 KB
testcase_20 AC 230 ms
32,956 KB
testcase_21 AC 235 ms
32,836 KB
testcase_22 AC 150 ms
24,208 KB
testcase_23 AC 152 ms
22,616 KB
testcase_24 AC 116 ms
20,204 KB
testcase_25 AC 102 ms
18,644 KB
testcase_26 AC 110 ms
19,244 KB
testcase_27 AC 166 ms
14,576 KB
testcase_28 AC 170 ms
14,744 KB
testcase_29 AC 168 ms
14,740 KB
testcase_30 AC 162 ms
14,744 KB
testcase_31 AC 147 ms
14,744 KB
testcase_32 AC 153 ms
14,744 KB
testcase_33 AC 157 ms
14,612 KB
testcase_34 AC 153 ms
14,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))
A.sort()
ans=1
mod=10**9+7
b=0
for i in range(N-1,-1,-1):
    while b<N and A[i]+A[b]<=K:
        b+=1
    if i<=b:
        cnt=N-2*(N-1-i)
        if cnt<0:
            ans=0
        else:
            for c in range(1,cnt,2):
                ans*=c
                ans%=mod
        break
    else:
        ans*=b-(N-1-i)
        ans%=mod
print(ans)
0