結果

問題 No.2561 みんな大好きmod 998
ユーザー bluemeganebluemegane
提出日時 2023-12-02 18:37:37
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 1,920 ms / 4,000 ms
コード長 1,994 bytes
コンパイル時間 8,479 ms
コンパイル使用メモリ 167,052 KB
実行使用メモリ 208,696 KB
最終ジャッジ日時 2024-09-26 21:25:48
合計ジャッジ時間 33,824 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
30,080 KB
testcase_01 AC 148 ms
54,144 KB
testcase_02 AC 57 ms
30,072 KB
testcase_03 AC 1,847 ms
54,016 KB
testcase_04 AC 1,784 ms
54,144 KB
testcase_05 AC 1,790 ms
53,760 KB
testcase_06 AC 1,868 ms
54,144 KB
testcase_07 AC 59 ms
29,952 KB
testcase_08 AC 57 ms
29,824 KB
testcase_09 AC 64 ms
31,456 KB
testcase_10 AC 59 ms
30,208 KB
testcase_11 AC 340 ms
54,016 KB
testcase_12 AC 59 ms
30,080 KB
testcase_13 AC 58 ms
30,080 KB
testcase_14 AC 58 ms
30,200 KB
testcase_15 AC 1,795 ms
53,888 KB
testcase_16 AC 61 ms
30,464 KB
testcase_17 AC 60 ms
30,336 KB
testcase_18 AC 61 ms
30,336 KB
testcase_19 AC 1,390 ms
54,016 KB
testcase_20 AC 63 ms
30,464 KB
testcase_21 AC 60 ms
30,464 KB
testcase_22 AC 60 ms
30,336 KB
testcase_23 AC 61 ms
30,336 KB
testcase_24 AC 61 ms
29,696 KB
testcase_25 AC 60 ms
29,952 KB
testcase_26 AC 466 ms
54,144 KB
testcase_27 AC 1,920 ms
53,888 KB
testcase_28 AC 606 ms
53,760 KB
testcase_29 AC 213 ms
54,272 KB
testcase_30 AC 492 ms
53,888 KB
testcase_31 AC 944 ms
54,016 KB
testcase_32 AC 294 ms
53,888 KB
testcase_33 AC 225 ms
54,272 KB
testcase_34 AC 1,873 ms
54,016 KB
testcase_35 AC 221 ms
54,144 KB
testcase_36 AC 220 ms
53,856 KB
testcase_37 AC 143 ms
54,016 KB
testcase_38 AC 360 ms
53,888 KB
testcase_39 AC 509 ms
53,760 KB
testcase_40 AC 509 ms
54,016 KB
testcase_41 AC 346 ms
53,888 KB
testcase_42 AC 574 ms
54,272 KB
testcase_43 AC 135 ms
53,888 KB
testcase_44 AC 270 ms
53,888 KB
testcase_45 AC 1,318 ms
54,016 KB
testcase_46 AC 248 ms
208,696 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (99 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  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;

class Perm
{
    public static void Swap<T>(ref T x, ref T y) { T tmp = x; x = y; y = tmp; }

    public static bool NextPermutation<T>(T[] array, int index, int length, Comparison<T> comp)
    {
        if (length <= 1) return false;
        for (int i = length - 1; i > 0; i--)
        {
            int k = i - 1;
            if (comp(array[k], array[i]) < 0)
            {
                int j = Array.FindLastIndex(array, delegate (T x) { return comp(array[k], x) < 0; });
                Swap(ref array[k], ref array[j]);
                Array.Reverse(array, i, length - i);
                return true;
            }
        }
        Array.Reverse(array, index, length);
        return false;
    }

    public static bool NextPermutation<T>(T[] array) where T : IComparable
    {
        return NextPermutation(array, 0, array.Length, Comparer<T>.Default.Compare);
    }
}


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 n, int[] a, int[] b)
    {
        var s998 = 0L;
        var sMOD = 0L;
        for (int i = 0; i < n; i++)
        {
            if (b[i] == 0)
            {
                s998 += a[i];
                sMOD += a[i];
                s998 %= 998;
                sMOD %= MOD;
            }
        }
        return sMOD <= s998;
    }
    static void getAns(int n, int k, int[] a)
    {
        var c = 0L;
        var b = Enumerable.Repeat(1, n).ToArray();
        for (int i = 0; i < k; i++) b[i] = 0;
        do
        {
            if (calc(n,a, b)) c++;
        }
        while (Perm.NextPermutation(b));
        Console.WriteLine(c %= 998);
    }
}
0