結果

問題 No.2561 みんな大好きmod 998
ユーザー bluemeganebluemegane
提出日時 2023-12-02 18:33:59
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,907 bytes
コンパイル時間 8,373 ms
コンパイル使用メモリ 167,532 KB
実行使用メモリ 208,228 KB
最終ジャッジ日時 2024-09-26 21:24:58
合計ジャッジ時間 49,105 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 197 ms
53,884 KB
testcase_02 AC 51 ms
29,924 KB
testcase_03 AC 2,901 ms
54,912 KB
testcase_04 AC 2,911 ms
55,168 KB
testcase_05 AC 2,918 ms
54,776 KB
testcase_06 WA -
testcase_07 AC 53 ms
30,080 KB
testcase_08 AC 53 ms
30,208 KB
testcase_09 AC 58 ms
31,616 KB
testcase_10 AC 50 ms
29,948 KB
testcase_11 AC 638 ms
53,888 KB
testcase_12 AC 54 ms
29,684 KB
testcase_13 AC 54 ms
29,948 KB
testcase_14 AC 54 ms
30,208 KB
testcase_15 WA -
testcase_16 AC 53 ms
30,208 KB
testcase_17 AC 52 ms
29,948 KB
testcase_18 AC 53 ms
30,060 KB
testcase_19 WA -
testcase_20 AC 55 ms
30,464 KB
testcase_21 AC 51 ms
29,824 KB
testcase_22 AC 50 ms
30,208 KB
testcase_23 AC 51 ms
30,208 KB
testcase_24 AC 50 ms
29,936 KB
testcase_25 AC 53 ms
30,208 KB
testcase_26 AC 876 ms
53,888 KB
testcase_27 AC 2,955 ms
54,780 KB
testcase_28 AC 1,208 ms
53,852 KB
testcase_29 AC 345 ms
53,888 KB
testcase_30 AC 905 ms
54,144 KB
testcase_31 AC 2,051 ms
54,636 KB
testcase_32 AC 603 ms
53,888 KB
testcase_33 AC 348 ms
53,884 KB
testcase_34 AC 2,883 ms
54,780 KB
testcase_35 AC 353 ms
54,144 KB
testcase_36 AC 361 ms
53,988 KB
testcase_37 AC 189 ms
53,884 KB
testcase_38 AC 633 ms
54,144 KB
testcase_39 AC 922 ms
53,888 KB
testcase_40 AC 923 ms
54,260 KB
testcase_41 AC 630 ms
54,016 KB
testcase_42 AC 1,165 ms
54,144 KB
testcase_43 AC 181 ms
54,144 KB
testcase_44 AC 468 ms
54,144 KB
testcase_45 AC 2,381 ms
54,516 KB
testcase_46 AC 443 ms
208,228 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (87 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[] 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;
        var b = Enumerable.Repeat(1, n).ToArray();
        for (int i = 0; i < k; i++) b[i] = 0;
        do
        {
            if (calc(a, b)) c++;
        }
        while (Perm.NextPermutation(b));
        Console.WriteLine(c %= 998);
    }
}
0