結果

問題 No.2021 Not A but B
ユーザー mobchanmobchan
提出日時 2023-05-05 00:53:01
言語 C#
(.NET 8.0.203)
結果
TLE  
実行時間 -
コード長 526 bytes
コンパイル時間 9,318 ms
コンパイル使用メモリ 166,756 KB
実行使用メモリ 687,272 KB
最終ジャッジ日時 2024-11-22 14:09:50
合計ジャッジ時間 67,167 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
32,984 KB
testcase_01 AC 53 ms
36,620 KB
testcase_02 AC 53 ms
29,824 KB
testcase_03 AC 53 ms
33,280 KB
testcase_04 AC 54 ms
35,052 KB
testcase_05 AC 52 ms
366,800 KB
testcase_06 AC 53 ms
32,896 KB
testcase_07 AC 53 ms
35,072 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 698 ms
104,356 KB
testcase_23 AC 694 ms
142,592 KB
testcase_24 AC 100 ms
47,488 KB
testcase_25 AC 721 ms
100,216 KB
testcase_26 MLE -
testcase_27 TLE -
testcase_28 MLE -
testcase_29 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (96 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