結果

問題 No.794 チーム戦 (2)
ユーザー convexineqconvexineq
提出日時 2021-03-18 04:02:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 1,500 ms
コード長 241 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 110,336 KB
最終ジャッジ日時 2024-11-15 21:55:20
合計ジャッジ時間 6,020 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 38 ms
51,712 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 38 ms
51,712 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 39 ms
51,584 KB
testcase_10 AC 38 ms
51,840 KB
testcase_11 AC 40 ms
51,968 KB
testcase_12 AC 39 ms
51,712 KB
testcase_13 AC 38 ms
51,968 KB
testcase_14 AC 152 ms
105,732 KB
testcase_15 AC 152 ms
105,604 KB
testcase_16 AC 150 ms
105,340 KB
testcase_17 AC 152 ms
105,204 KB
testcase_18 AC 145 ms
105,464 KB
testcase_19 AC 145 ms
105,436 KB
testcase_20 AC 146 ms
105,076 KB
testcase_21 AC 145 ms
105,212 KB
testcase_22 AC 119 ms
100,736 KB
testcase_23 AC 118 ms
97,280 KB
testcase_24 AC 106 ms
92,544 KB
testcase_25 AC 100 ms
89,088 KB
testcase_26 AC 95 ms
87,040 KB
testcase_27 AC 117 ms
110,336 KB
testcase_28 AC 116 ms
110,080 KB
testcase_29 AC 119 ms
110,208 KB
testcase_30 AC 117 ms
109,568 KB
testcase_31 AC 109 ms
107,520 KB
testcase_32 AC 106 ms
107,136 KB
testcase_33 AC 118 ms
109,568 KB
testcase_34 AC 118 ms
109,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
*a, = map(int,input().split())
a.sort()
MOD = 10**9+7
idx = 0
ans = 1
for i in range(n//2):
    while idx < n and a[n-1-i] + a[idx] <= k:
        idx += 1
    ans *= min(idx-i,n-1-i*2)
    ans %= MOD
print(ans)
0