結果

問題 No.2419 MMA文字列2
ユーザー bluemeganebluemegane
提出日時 2023-08-19 12:55:44
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 783 bytes
コンパイル時間 3,472 ms
コンパイル使用メモリ 107,972 KB
実行使用メモリ 66,316 KB
最終ジャッジ日時 2024-05-06 20:00:13
合計ジャッジ時間 3,566 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
25,820 KB
testcase_01 AC 21 ms
25,684 KB
testcase_02 AC 22 ms
25,684 KB
testcase_03 AC 21 ms
23,512 KB
testcase_04 AC 20 ms
23,856 KB
testcase_05 AC 19 ms
21,560 KB
testcase_06 AC 20 ms
25,688 KB
testcase_07 AC 20 ms
23,772 KB
testcase_08 AC 21 ms
23,512 KB
testcase_09 AC 22 ms
25,808 KB
testcase_10 AC 22 ms
23,852 KB
testcase_11 AC 21 ms
23,852 KB
testcase_12 AC 31 ms
31,752 KB
testcase_13 AC 23 ms
24,540 KB
testcase_14 AC 43 ms
42,456 KB
testcase_15 AC 33 ms
31,620 KB
testcase_16 AC 42 ms
41,272 KB
testcase_17 AC 27 ms
28,288 KB
testcase_18 AC 41 ms
40,036 KB
testcase_19 AC 43 ms
42,928 KB
testcase_20 AC 28 ms
29,392 KB
testcase_21 AC 24 ms
25,080 KB
testcase_22 AC 64 ms
64,528 KB
testcase_23 AC 66 ms
64,136 KB
testcase_24 AC 66 ms
66,200 KB
testcase_25 AC 65 ms
61,968 KB
testcase_26 AC 26 ms
27,680 KB
testcase_27 AC 60 ms
66,196 KB
testcase_28 AC 69 ms
64,280 KB
testcase_29 AC 74 ms
64,160 KB
testcase_30 AC 69 ms
66,316 KB
testcase_31 AC 67 ms
66,200 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        var s = Console.ReadLine().Trim();
        getAns(s);
    }
    static void getAns(string s)
    {
        var n = s.Length;
        var a = new long[26, n];
        for (int i = 0; i < 26; i++)
        {
            if (s[0] - 'A' == i) a[i, 0] = 1;
            for (int j = 1; j < n; j++)
            {
                a[i, j] = a[i, j - 1];
                if (s[j] - 'A' == i) a[i, j]++;
            }
        }
        var ans = 0L;
        for (int i = 1; i < n - 1; i++)
        {
            var t = s[i] - 'A';
            if (a[t, i - 1] < 1) continue;
            var ww = n - 1 - i - (a[t, n - 1] - a[t, i]);
            ans += ww * (a[t, i - 1]);
        }
        Console.WriteLine(ans);
    }
}
0