結果

問題 No.794 チーム戦 (2)
ユーザー rlangevinrlangevin
提出日時 2023-09-27 00:36:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 171 ms / 1,500 ms
コード長 250 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 105,600 KB
最終ジャッジ日時 2024-07-19 18:15:14
合計ジャッジ時間 5,899 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 39 ms
52,324 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 AC 39 ms
51,584 KB
testcase_09 AC 37 ms
52,352 KB
testcase_10 AC 37 ms
52,096 KB
testcase_11 AC 39 ms
51,840 KB
testcase_12 AC 38 ms
52,096 KB
testcase_13 AC 38 ms
51,840 KB
testcase_14 AC 168 ms
101,504 KB
testcase_15 AC 168 ms
101,504 KB
testcase_16 AC 166 ms
101,504 KB
testcase_17 AC 171 ms
101,504 KB
testcase_18 AC 154 ms
101,504 KB
testcase_19 AC 154 ms
101,760 KB
testcase_20 AC 156 ms
101,504 KB
testcase_21 AC 151 ms
101,632 KB
testcase_22 AC 125 ms
95,488 KB
testcase_23 AC 116 ms
93,056 KB
testcase_24 AC 99 ms
88,960 KB
testcase_25 AC 97 ms
85,760 KB
testcase_26 AC 102 ms
87,552 KB
testcase_27 AC 135 ms
105,216 KB
testcase_28 AC 135 ms
104,960 KB
testcase_29 AC 136 ms
105,600 KB
testcase_30 AC 130 ms
104,960 KB
testcase_31 AC 115 ms
104,960 KB
testcase_32 AC 116 ms
104,960 KB
testcase_33 AC 140 ms
104,704 KB
testcase_34 AC 137 ms
104,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

N, K = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
mod = 10**9 + 7
ans = 1
for i in range(N//2):
    ind = bisect_right(A, K - A[-1-i])
    ans *= min(N - 1 - i, ind) - i
    ans %= mod
    
print(ans)
0