結果

問題 No.2561 みんな大好きmod 998
ユーザー bluemeganebluemegane
提出日時 2023-12-02 17:09:53
言語 C#
(.NET 8.0.203)
結果
TLE  
実行時間 -
コード長 1,642 bytes
コンパイル時間 8,136 ms
コンパイル使用メモリ 167,604 KB
実行使用メモリ 208,820 KB
最終ジャッジ日時 2024-09-26 21:07:36
合計ジャッジ時間 25,714 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
30,208 KB
testcase_01 AC 552 ms
54,016 KB
testcase_02 AC 51 ms
29,696 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 52 ms
30,080 KB
testcase_08 AC 51 ms
29,952 KB
testcase_09 AC 68 ms
35,468 KB
testcase_10 AC 50 ms
29,952 KB
testcase_11 AC 1,596 ms
53,632 KB
testcase_12 AC 52 ms
30,208 KB
testcase_13 AC 52 ms
30,208 KB
testcase_14 AC 53 ms
29,824 KB
testcase_15 TLE -
testcase_16 AC 52 ms
30,208 KB
testcase_17 AC 51 ms
30,080 KB
testcase_18 AC 53 ms
29,940 KB
testcase_19 AC 3,578 ms
54,252 KB
testcase_20 AC 57 ms
30,592 KB
testcase_21 AC 53 ms
30,080 KB
testcase_22 AC 50 ms
32,024 KB
testcase_23 AC 50 ms
32,436 KB
testcase_24 AC 48 ms
30,080 KB
testcase_25 AC 48 ms
30,080 KB
testcase_26 AC 2,068 ms
54,656 KB
testcase_27 TLE -
testcase_28 AC 2,273 ms
54,656 KB
testcase_29 AC 844 ms
53,760 KB
testcase_30 AC 2,248 ms
54,528 KB
testcase_31 AC 2,979 ms
56,264 KB
testcase_32 AC 1,028 ms
53,484 KB
testcase_33 AC 838 ms
53,504 KB
testcase_34 TLE -
testcase_35 AC 655 ms
53,888 KB
testcase_36 AC 667 ms
53,632 KB
testcase_37 AC 331 ms
53,888 KB
testcase_38 AC 1,540 ms
53,760 KB
testcase_39 AC 2,270 ms
54,528 KB
testcase_40 AC 2,235 ms
54,272 KB
testcase_41 AC 1,545 ms
55,824 KB
testcase_42 AC 2,261 ms
56,668 KB
testcase_43 AC 328 ms
53,888 KB
testcase_44 AC 1,141 ms
53,888 KB
testcase_45 AC 3,600 ms
54,400 KB
testcase_46 AC 806 ms
208,820 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (86 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.cs(5,21): warning CS8981: 型名 'combi' には、小文字の ASCII 文字のみが含まれています。このような名前は、プログラミング言語用に予約されている可能性があります。 [/home/judge/data/code/main.csproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System.Collections.Generic;
using System.Linq;
using System;

public static class combi
{
    public static IEnumerable<IEnumerable<T>> Comb<T>(this IEnumerable<T> items, int r)
    {
        if (r == 0)
        {
            yield return Enumerable.Empty<T>();
        }
        else
        {
            var i = 1;
            foreach (var x in items)
            {
                var xs = items.Skip(i);
                foreach (var c in Comb(xs, r - 1))
                    yield return c.Before(x);
                i++;
            }
        }
    }
    public static IEnumerable<T> Before<T>(this IEnumerable<T> items, T first)
    {
        yield return first;
        foreach (var i in items)
            yield return i;
    }
}

public class Hello
{
    public static int MOD = 998244353;
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var k = int.Parse(line[1]);
        line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, int.Parse);
        getAns(n, k, a);
    }
    static bool calc(int[] a, int[] p)
    {
        var s998 = 0L;
        var sMOD = 0L;
        foreach (var x in p)
        {
            s998 += a[x];
            s998 %= 998;
            sMOD += a[x];
            sMOD %= MOD;
        }
        return sMOD <= s998;
    }
    static void getAns(int n, int k, int[] a)
    {
        var c = 0L;
        foreach (var x in Enumerable.Range(0, n).Comb(k))
        {
            var p = x.ToArray();
            if (calc(a, p)) c++;
        }
        Console.WriteLine(c %= 998);
    }
}
0