結果

問題 No.794 チーム戦 (2)
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-22 01:00:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 171 ms / 1,500 ms
コード長 268 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 105,544 KB
最終ジャッジ日時 2024-06-07 12:01:26
合計ジャッジ時間 5,885 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,368 KB
testcase_01 AC 38 ms
51,940 KB
testcase_02 AC 42 ms
52,944 KB
testcase_03 AC 37 ms
53,300 KB
testcase_04 AC 37 ms
53,064 KB
testcase_05 AC 38 ms
53,168 KB
testcase_06 AC 38 ms
52,320 KB
testcase_07 AC 38 ms
52,728 KB
testcase_08 AC 38 ms
53,416 KB
testcase_09 AC 38 ms
52,068 KB
testcase_10 AC 38 ms
51,872 KB
testcase_11 AC 38 ms
52,468 KB
testcase_12 AC 38 ms
52,444 KB
testcase_13 AC 37 ms
53,108 KB
testcase_14 AC 171 ms
101,856 KB
testcase_15 AC 170 ms
101,612 KB
testcase_16 AC 170 ms
101,632 KB
testcase_17 AC 168 ms
101,952 KB
testcase_18 AC 151 ms
101,660 KB
testcase_19 AC 149 ms
101,660 KB
testcase_20 AC 151 ms
101,936 KB
testcase_21 AC 152 ms
101,880 KB
testcase_22 AC 123 ms
95,672 KB
testcase_23 AC 114 ms
93,324 KB
testcase_24 AC 92 ms
89,264 KB
testcase_25 AC 93 ms
85,976 KB
testcase_26 AC 100 ms
87,464 KB
testcase_27 AC 135 ms
105,368 KB
testcase_28 AC 139 ms
105,544 KB
testcase_29 AC 137 ms
105,404 KB
testcase_30 AC 131 ms
105,128 KB
testcase_31 AC 120 ms
105,456 KB
testcase_32 AC 120 ms
105,068 KB
testcase_33 AC 140 ms
105,200 KB
testcase_34 AC 127 ms
105,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 1
used = 0

for _ in range(N // 2):
    R = A.pop()
    i = bisect.bisect_right(A, K - R)
    ans *= max(0, i - used)
    ans %= mod
    used += 1

print(ans)
0