結果

問題 No.1709 Indistinguishable by MEX
ユーザー kakel-sankakel-san
提出日時 2023-12-26 23:44:29
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 1,216 bytes
コンパイル時間 11,188 ms
コンパイル使用メモリ 169,516 KB
実行使用メモリ 196,424 KB
最終ジャッジ日時 2024-09-27 15:18:34
合計ジャッジ時間 14,339 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
30,192 KB
testcase_01 AC 59 ms
30,192 KB
testcase_02 AC 59 ms
30,456 KB
testcase_03 AC 59 ms
30,464 KB
testcase_04 AC 58 ms
29,824 KB
testcase_05 AC 59 ms
30,080 KB
testcase_06 AC 59 ms
30,300 KB
testcase_07 AC 58 ms
30,080 KB
testcase_08 AC 90 ms
47,232 KB
testcase_09 AC 86 ms
44,544 KB
testcase_10 AC 84 ms
43,264 KB
testcase_11 AC 78 ms
41,456 KB
testcase_12 AC 80 ms
41,088 KB
testcase_13 AC 87 ms
45,824 KB
testcase_14 AC 85 ms
44,672 KB
testcase_15 AC 87 ms
45,184 KB
testcase_16 AC 92 ms
51,512 KB
testcase_17 AC 91 ms
50,664 KB
testcase_18 AC 99 ms
52,128 KB
testcase_19 AC 97 ms
52,132 KB
testcase_20 AC 97 ms
52,264 KB
testcase_21 AC 95 ms
52,240 KB
testcase_22 AC 93 ms
52,136 KB
testcase_23 AC 93 ms
52,256 KB
testcase_24 AC 93 ms
52,252 KB
testcase_25 AC 93 ms
52,128 KB
testcase_26 AC 59 ms
30,300 KB
testcase_27 AC 79 ms
41,948 KB
testcase_28 AC 80 ms
196,424 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (105 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 int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var p = NList;
        WriteLine(Mex(n, p));
    }
    static long Mex(int n, int[] p)
    {
        var pos = new int[n];
        for (var i = 0; i < n; ++i) pos[p[i]] = i;
        var left = n + 1;
        var right = -1;
        var ans = 1L;
        var mod = 998_244_353;
        for (var i = 0; i < n; ++i)
        {
            var cnt = 1;
            if (left <= pos[i] && pos[i] <= right)
            {
                cnt = right - left - i + 1;
            }
            if (pos[i] < left)
            {
                left = pos[i];
            }
            if (right < pos[i])
            {
                right = pos[i];
            }
            ans = ans * cnt % mod;
        }
        return ans;
    }
}
0