結果

問題 No.2537 多重含意
ユーザー kakel-sankakel-san
提出日時 2023-11-10 23:33:53
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 1,232 bytes
コンパイル時間 7,013 ms
コンパイル使用メモリ 167,588 KB
実行使用メモリ 201,512 KB
最終ジャッジ日時 2024-09-26 02:23:35
合計ジャッジ時間 9,728 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
31,104 KB
testcase_01 AC 52 ms
31,076 KB
testcase_02 AC 55 ms
31,104 KB
testcase_03 AC 56 ms
30,948 KB
testcase_04 AC 56 ms
30,720 KB
testcase_05 AC 53 ms
30,720 KB
testcase_06 AC 57 ms
30,592 KB
testcase_07 AC 54 ms
30,804 KB
testcase_08 AC 55 ms
30,592 KB
testcase_09 AC 55 ms
30,976 KB
testcase_10 AC 56 ms
30,844 KB
testcase_11 AC 55 ms
31,220 KB
testcase_12 AC 54 ms
30,836 KB
testcase_13 AC 55 ms
30,836 KB
testcase_14 AC 56 ms
30,976 KB
testcase_15 AC 55 ms
30,836 KB
testcase_16 AC 56 ms
31,104 KB
testcase_17 AC 58 ms
32,640 KB
testcase_18 AC 83 ms
46,080 KB
testcase_19 AC 85 ms
46,180 KB
testcase_20 AC 86 ms
45,952 KB
testcase_21 AC 86 ms
46,336 KB
testcase_22 AC 89 ms
46,196 KB
testcase_23 AC 86 ms
201,512 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (88 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;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static string[] SList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => ReadLine()).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, b) = (c[0], c[1]);
        var a = NList;
        WriteLine(X(n, b, a));
    }
    static string X(int n, int b, int[] a)
    {
        var counts = new int[n + 1];
        var kinds = 0;
        var mul = new long[n + 1];
        mul[0] = 1 % b;
        for (var i = 1; i < mul.Length; ++i) mul[i] = mul[i - 1] * 2 % b;
        var ans = new long[n];
        for (var i = 0; i < n; ++i)
        {
            if (counts[a[i]] == 0) ++kinds;
            ++counts[a[i]];
            if (counts[a[i]] > 1)
            {
                ans[i] = mul[n];
            }
            else
            {
                ans[i] = (mul[n] - mul[n - kinds] + b) % b;
            }
        }
        return string.Join("\n", ans);
    }
}
0