結果

問題 No.2276 I Want AC
ユーザー kakel-sankakel-san
提出日時 2023-07-07 21:25:07
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 1,164 bytes
コンパイル時間 4,788 ms
コンパイル使用メモリ 112,132 KB
実行使用メモリ 28,672 KB
最終ジャッジ日時 2024-07-21 17:05:56
合計ジャッジ時間 8,703 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
23,760 KB
testcase_01 AC 24 ms
23,900 KB
testcase_02 AC 23 ms
23,784 KB
testcase_03 AC 24 ms
23,644 KB
testcase_04 AC 23 ms
25,812 KB
testcase_05 AC 23 ms
23,644 KB
testcase_06 AC 24 ms
24,028 KB
testcase_07 AC 23 ms
25,552 KB
testcase_08 AC 23 ms
23,640 KB
testcase_09 AC 23 ms
23,768 KB
testcase_10 AC 23 ms
23,732 KB
testcase_11 AC 26 ms
23,720 KB
testcase_12 AC 32 ms
24,544 KB
testcase_13 AC 27 ms
23,444 KB
testcase_14 AC 25 ms
23,596 KB
testcase_15 AC 28 ms
25,876 KB
testcase_16 AC 27 ms
25,768 KB
testcase_17 AC 31 ms
26,432 KB
testcase_18 AC 30 ms
26,036 KB
testcase_19 AC 24 ms
23,324 KB
testcase_20 AC 31 ms
24,552 KB
testcase_21 AC 28 ms
23,864 KB
testcase_22 AC 25 ms
25,764 KB
testcase_23 AC 32 ms
24,928 KB
testcase_24 AC 32 ms
24,880 KB
testcase_25 AC 33 ms
26,904 KB
testcase_26 AC 31 ms
25,008 KB
testcase_27 AC 30 ms
24,880 KB
testcase_28 AC 29 ms
24,932 KB
testcase_29 AC 30 ms
24,880 KB
testcase_30 AC 30 ms
24,800 KB
testcase_31 AC 29 ms
24,668 KB
testcase_32 AC 30 ms
24,752 KB
testcase_33 AC 31 ms
24,856 KB
testcase_34 AC 31 ms
26,644 KB
testcase_35 AC 28 ms
28,672 KB
testcase_36 AC 28 ms
24,496 KB
testcase_37 AC 31 ms
26,780 KB
testcase_38 AC 26 ms
24,848 KB
testcase_39 AC 28 ms
26,960 KB
testcase_40 AC 27 ms
24,796 KB
testcase_41 AC 28 ms
27,024 KB
testcase_42 AC 27 ms
24,804 KB
testcase_43 AC 28 ms
23,092 KB
testcase_44 AC 33 ms
26,452 KB
testcase_45 AC 30 ms
26,772 KB
testcase_46 AC 34 ms
24,932 KB
testcase_47 AC 31 ms
25,060 KB
testcase_48 AC 32 ms
26,832 KB
testcase_49 AC 30 ms
26,900 KB
testcase_50 AC 29 ms
24,880 KB
testcase_51 AC 32 ms
26,900 KB
testcase_52 AC 33 ms
25,176 KB
testcase_53 AC 30 ms
22,840 KB
testcase_54 AC 29 ms
25,048 KB
testcase_55 AC 29 ms
26,648 KB
testcase_56 AC 30 ms
26,896 KB
testcase_57 AC 28 ms
26,968 KB
testcase_58 AC 28 ms
24,796 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();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var s = ReadLine();

        var sc = s.Replace('?', 'C');
        var acount = 0;
        var tmp = 0L;
        for (var i = 0; i < n; ++i)
        {
            if (sc[i] == 'A') ++acount;
            else tmp += acount;
        }
        var ccount = new int[n];
        for (var i = n - 1; i >= 0; --i)
        {
            if (i < n - 1) ccount[i] = ccount[i + 1];
            if (sc[i] != 'A') ++ccount[i];
        }
        acount = 0;
        var max = tmp;
        for (var i = 0; i < n; ++i)
        {
            if (s[i] == 'A') ++acount;
            if (s[i] == '?')
            {
                tmp = tmp - acount + ccount[i] - 1;
                ++acount;
                max = Math.Max(max, tmp);
            }
        }
        WriteLine(max);
    }
}
0