結果

問題 No.2021 Not A but B
ユーザー mobchanmobchan
提出日時 2023-05-05 00:53:01
言語 C#
(.NET 8.0.203)
結果
TLE  
実行時間 -
コード長 526 bytes
コンパイル時間 9,108 ms
コンパイル使用メモリ 165,928 KB
実行使用メモリ 359,348 KB
最終ジャッジ日時 2024-05-02 03:47:28
合計ジャッジ時間 14,035 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
33,408 KB
testcase_01 AC 52 ms
36,764 KB
testcase_02 AC 53 ms
29,824 KB
testcase_03 AC 54 ms
30,208 KB
testcase_04 AC 52 ms
29,824 KB
testcase_05 AC 51 ms
29,824 KB
testcase_06 AC 53 ms
29,824 KB
testcase_07 AC 53 ms
29,824 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (99 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;
using System.Linq;

class Program
{
    static void Main(string[] args)
    {
        var N = int.Parse(Console.ReadLine());
        var S = Console.ReadLine();
        var array = S.ToArray();
        var hs = new HashSet<string>();

        for (int i = 0; i < N - 1; i++)
        {
            array[i] = 'B';
            array[i + 1] = 'B';

            hs.Add(string.Join("", array));
            array = S.ToArray();
        }
        Console.WriteLine(hs.Count);
    }
}
0