結果

問題 No.2055 12x34...
ユーザー kakel-sankakel-san
提出日時 2022-08-28 21:21:08
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 1,070 bytes
コンパイル時間 4,561 ms
コンパイル使用メモリ 105,984 KB
実行使用メモリ 46,180 KB
最終ジャッジ日時 2024-10-15 18:16:25
合計ジャッジ時間 12,757 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
19,328 KB
testcase_01 AC 30 ms
19,456 KB
testcase_02 AC 56 ms
21,732 KB
testcase_03 AC 82 ms
24,960 KB
testcase_04 AC 99 ms
27,520 KB
testcase_05 AC 112 ms
32,384 KB
testcase_06 AC 97 ms
27,008 KB
testcase_07 AC 84 ms
25,216 KB
testcase_08 AC 71 ms
23,680 KB
testcase_09 AC 120 ms
32,640 KB
testcase_10 AC 125 ms
33,280 KB
testcase_11 AC 68 ms
23,424 KB
testcase_12 AC 119 ms
39,296 KB
testcase_13 AC 180 ms
46,180 KB
testcase_14 AC 85 ms
34,176 KB
testcase_15 AC 84 ms
34,304 KB
testcase_16 AC 185 ms
46,152 KB
testcase_17 AC 90 ms
31,488 KB
testcase_18 AC 144 ms
40,960 KB
testcase_19 AC 58 ms
24,192 KB
testcase_20 AC 45 ms
21,352 KB
testcase_21 AC 58 ms
24,448 KB
testcase_22 AC 173 ms
43,520 KB
testcase_23 AC 161 ms
42,496 KB
testcase_24 AC 166 ms
45,356 KB
testcase_25 AC 159 ms
42,752 KB
testcase_26 AC 159 ms
42,240 KB
testcase_27 AC 163 ms
45,416 KB
testcase_28 AC 168 ms
45,392 KB
testcase_29 AC 165 ms
45,276 KB
testcase_30 AC 156 ms
42,496 KB
testcase_31 AC 161 ms
42,368 KB
testcase_32 AC 170 ms
45,344 KB
testcase_33 AC 136 ms
34,816 KB
testcase_34 AC 136 ms
35,072 KB
testcase_35 AC 135 ms
34,944 KB
testcase_36 AC 135 ms
34,816 KB
testcase_37 AC 135 ms
34,944 KB
testcase_38 AC 135 ms
34,944 KB
testcase_39 AC 135 ms
34,944 KB
testcase_40 AC 135 ms
34,816 KB
testcase_41 AC 134 ms
34,816 KB
testcase_42 AC 136 ms
35,072 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

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 void Main()
    {
        var n = NN;
        var a = NList;
        var mod = 998_244_353;
        var ncnt = new Dictionary<int, long>();
        var ecnt = new Dictionary<int, long>();
        for (var i = 0; i < n; ++i)
        {
            var add = 0L;
            if (ncnt.ContainsKey(a[i] - 1))
            {
                add = (ncnt[a[i] - 1] + ecnt[a[i] - 1]) % mod;
            }
            if (ncnt.ContainsKey(a[i]))
            {
                ncnt[a[i]] += 1;
                ecnt[a[i]] = (ecnt[a[i]] + add) % mod;
            }
            else
            {
                ncnt[a[i]] = 1;
                ecnt[a[i]] = add;
            }
        }
        var res = 0L;
        foreach (var kv in ecnt) res = (res + kv.Value) % mod;
        WriteLine(res);
    }
}
0