結果

問題 No.794 チーム戦 (2)
ユーザー pasoconhoshiipasoconhoshii
提出日時 2019-03-19 08:36:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 313 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,092 KB
最終ジャッジ日時 2024-09-13 11:21:40
合計ジャッジ時間 10,418 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 30 ms
10,752 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 29 ms
10,880 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 461 ms
32,836 KB
testcase_17 AC 443 ms
32,928 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 336 ms
20,504 KB
testcase_30 AC 325 ms
19,096 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))
from bisect import bisect_right as br

A.sort()

rem=[0]*(N+1)
for i in range(N-1,-1,-1 ):
    r=K-A[i]
    idx=min(br(A,r),i)
    rem[i]=idx
ans=1
mod=10**9+7
n=0
for i in range(N-1,-1,-1):
    ans=ans*(rem[i]-n)%mod
    n+=1
    
print(ans%mod)
    
0