結果

問題 No.2055 12x34...
ユーザー デカブツデカブツ
提出日時 2022-08-21 14:13:23
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 1,466 bytes
コンパイル時間 7,577 ms
コンパイル使用メモリ 170,148 KB
実行使用メモリ 205,848 KB
最終ジャッジ日時 2024-10-10 06:11:33
合計ジャッジ時間 15,153 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
29,536 KB
testcase_01 AC 55 ms
29,568 KB
testcase_02 AC 87 ms
34,176 KB
testcase_03 AC 114 ms
40,184 KB
testcase_04 AC 127 ms
41,344 KB
testcase_05 AC 132 ms
42,240 KB
testcase_06 AC 128 ms
41,344 KB
testcase_07 AC 116 ms
40,692 KB
testcase_08 AC 102 ms
36,328 KB
testcase_09 AC 140 ms
42,880 KB
testcase_10 AC 144 ms
43,904 KB
testcase_11 AC 98 ms
35,968 KB
testcase_12 AC 119 ms
52,728 KB
testcase_13 AC 148 ms
66,568 KB
testcase_14 AC 102 ms
44,672 KB
testcase_15 AC 102 ms
45,312 KB
testcase_16 AC 150 ms
66,800 KB
testcase_17 AC 110 ms
43,776 KB
testcase_18 AC 141 ms
54,908 KB
testcase_19 AC 91 ms
36,864 KB
testcase_20 AC 76 ms
33,408 KB
testcase_21 AC 89 ms
36,736 KB
testcase_22 AC 165 ms
58,248 KB
testcase_23 AC 157 ms
59,580 KB
testcase_24 AC 156 ms
66,576 KB
testcase_25 AC 153 ms
60,224 KB
testcase_26 AC 153 ms
59,996 KB
testcase_27 AC 155 ms
66,376 KB
testcase_28 AC 157 ms
65,744 KB
testcase_29 AC 154 ms
66,180 KB
testcase_30 AC 154 ms
59,900 KB
testcase_31 AC 157 ms
59,960 KB
testcase_32 AC 159 ms
63,808 KB
testcase_33 AC 151 ms
48,128 KB
testcase_34 AC 153 ms
47,872 KB
testcase_35 AC 151 ms
48,000 KB
testcase_36 AC 151 ms
48,256 KB
testcase_37 AC 150 ms
48,000 KB
testcase_38 AC 148 ms
48,112 KB
testcase_39 AC 149 ms
48,000 KB
testcase_40 AC 151 ms
47,992 KB
testcase_41 AC 149 ms
48,384 KB
testcase_42 AC 149 ms
205,848 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (94 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 System.Collections.Generic;

namespace test
{
    static class Program
    {
        static void Main()
        {
            long n = long.Parse(Console.ReadLine());
            string[] astr = Console.ReadLine().Split(' ');
            long[] a = new long[n];
            for(int i = 0; i < n; i++)
            {
                a[i] = long.Parse(astr[i]);
            }
            Dictionary<long,long> dict = new Dictionary<long,long>();
            for (int i = 0; i < n; i++)
            {
                if (dict.ContainsKey(a[i] - 1))
                {
                    if (dict.ContainsKey(a[i]))
                    {
                        dict[a[i]] = (dict[a[i]] +dict[a[i] - 1] + 1)%998244353;
                    }
                    else
                    {
                        dict.Add(a[i], (dict[a[i] - 1] + 1)%998244353);
                    }
                }
                else
                {
                    if (dict.ContainsKey(a[i]))
                    {
                        dict[a[i]] = (dict[a[i]]+1)%998244353;
                    }
                    else
                    {
                        dict.Add(a[i], 1);
                    }
                }
            }
            long count = 0;
            foreach (var item in dict)
            {
                count += item.Value;
            }
            Console.WriteLine((count - n+998244353)%998244353);
        }
    }
}
0