結果

問題 No.794 チーム戦 (2)
ユーザー keymoonkeymoon
提出日時 2019-02-22 22:26:24
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,472 bytes
コンパイル時間 1,099 ms
コンパイル使用メモリ 110,712 KB
実行使用メモリ 54,144 KB
最終ジャッジ日時 2024-11-25 09:33:05
合計ジャッジ時間 7,327 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
25,252 KB
testcase_01 AC 29 ms
25,080 KB
testcase_02 AC 28 ms
25,120 KB
testcase_03 AC 29 ms
27,288 KB
testcase_04 AC 28 ms
27,160 KB
testcase_05 AC 29 ms
25,248 KB
testcase_06 AC 29 ms
25,120 KB
testcase_07 AC 29 ms
25,116 KB
testcase_08 AC 29 ms
25,376 KB
testcase_09 AC 29 ms
27,384 KB
testcase_10 AC 29 ms
27,164 KB
testcase_11 AC 29 ms
25,376 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 223 ms
50,060 KB
testcase_15 AC 262 ms
52,096 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 211 ms
52,092 KB
testcase_19 AC 211 ms
50,056 KB
testcase_20 AC 216 ms
54,004 KB
testcase_21 AC 223 ms
52,092 KB
testcase_22 AC 154 ms
43,900 KB
testcase_23 AC 138 ms
43,288 KB
testcase_24 AC 105 ms
33,244 KB
testcase_25 AC 93 ms
32,384 KB
testcase_26 AC 106 ms
33,084 KB
testcase_27 AC 184 ms
41,208 KB
testcase_28 AC 182 ms
43,136 KB
testcase_29 WA -
testcase_30 AC 168 ms
41,080 KB
testcase_31 AC 172 ms
41,080 KB
testcase_32 AC 177 ms
43,120 KB
testcase_33 AC 180 ms
41,068 KB
testcase_34 AC 166 ms
41,220 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.IO;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
using System.Numerics;
using System.Diagnostics;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static System.Math;

class P
{
    static void Main()
    {
        var nk = Console.ReadLine().Split().Select(int.Parse).ToList();
        var a = Console.ReadLine().Split().Select(int.Parse).OrderByDescending(x => x).ToList();
        //なんやこれ DP?
        long res = 1;
        for (int i = 0; i < a.Count / 2; i++)
        {
            int pairMax = nk[1] - a[i];
            int valid = a.Count - 1;
            int invalid = i;
            if (pairMax < a[valid])
            {
                res *= 0;
                break;
            }
            if (a[invalid] <= pairMax)
            {
                res *= a.Count - i * 2 - 1;//自分を除外しないといけないため
                res %= 1000000007;
                continue;
            }

            while (valid - invalid > 1)
            {
                var mid = (valid + invalid) / 2;
                if (a[mid] <= pairMax) valid = mid;
                else invalid = mid;
            }
            if (a.Count - valid <= i)
            {
                res *= 0;
                return;
            }
            res *= (a.Count - valid - i);
            res %= 1000000007;
        }
        Console.WriteLine(res);
    }
}
0