結果

問題 No.2021 Not A but B
ユーザー kakel-sankakel-san
提出日時 2022-07-29 21:41:04
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 748 bytes
コンパイル時間 3,869 ms
コンパイル使用メモリ 116,192 KB
実行使用メモリ 35,612 KB
最終ジャッジ日時 2024-07-19 14:03:17
合計ジャッジ時間 4,981 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
25,468 KB
testcase_01 AC 26 ms
25,344 KB
testcase_02 AC 27 ms
25,264 KB
testcase_03 AC 27 ms
25,600 KB
testcase_04 AC 27 ms
23,472 KB
testcase_05 AC 27 ms
25,652 KB
testcase_06 AC 26 ms
25,512 KB
testcase_07 AC 27 ms
27,640 KB
testcase_08 AC 45 ms
30,976 KB
testcase_09 AC 44 ms
30,824 KB
testcase_10 AC 44 ms
31,064 KB
testcase_11 AC 43 ms
28,856 KB
testcase_12 AC 43 ms
33,156 KB
testcase_13 AC 44 ms
32,808 KB
testcase_14 AC 44 ms
30,796 KB
testcase_15 AC 45 ms
30,768 KB
testcase_16 AC 44 ms
32,816 KB
testcase_17 AC 44 ms
30,720 KB
testcase_18 AC 45 ms
32,884 KB
testcase_19 AC 44 ms
30,716 KB
testcase_20 AC 44 ms
31,104 KB
testcase_21 AC 27 ms
25,588 KB
testcase_22 AC 27 ms
23,348 KB
testcase_23 AC 29 ms
27,444 KB
testcase_24 AC 28 ms
27,752 KB
testcase_25 AC 29 ms
27,584 KB
testcase_26 AC 35 ms
27,700 KB
testcase_27 AC 49 ms
35,604 KB
testcase_28 AC 49 ms
35,612 KB
testcase_29 AC 53 ms
34,992 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 int[][] NArr(int n) => Enumerable.Repeat(0, n).Select(_ => NList).ToArray();
    static void Main()
    {
        var n = NN;
        var s = ReadLine();
        var set = new HashSet<long>();
        for (var i = 0; i + 1 < s.Length; ++i)
        {
            var key = 0L;
            if (s[i] == 'A') key += i + 1;
            if (s[i + 1] == 'A')
            {
                key = key * 1_000_000_000L + i + 2;
            }
            set.Add(key);
        }
        WriteLine(set.Count);
    }
}
0