結果

問題 No.2419 MMA文字列2
ユーザー bluemeganebluemegane
提出日時 2023-08-19 12:54:15
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 782 bytes
コンパイル時間 1,055 ms
コンパイル使用メモリ 107,952 KB
実行使用メモリ 48,320 KB
最終ジャッジ日時 2024-05-06 19:58:52
合計ジャッジ時間 4,015 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
25,816 KB
testcase_01 AC 24 ms
25,560 KB
testcase_02 AC 25 ms
25,688 KB
testcase_03 AC 24 ms
23,768 KB
testcase_04 AC 24 ms
25,692 KB
testcase_05 AC 26 ms
23,504 KB
testcase_06 AC 24 ms
23,640 KB
testcase_07 AC 23 ms
23,508 KB
testcase_08 AC 24 ms
23,640 KB
testcase_09 AC 24 ms
23,384 KB
testcase_10 AC 25 ms
25,560 KB
testcase_11 AC 24 ms
23,648 KB
testcase_12 AC 33 ms
27,708 KB
testcase_13 AC 26 ms
23,572 KB
testcase_14 AC 46 ms
33,728 KB
testcase_15 AC 36 ms
28,432 KB
testcase_16 AC 46 ms
32,376 KB
testcase_17 AC 30 ms
27,832 KB
testcase_18 AC 45 ms
32,784 KB
testcase_19 AC 45 ms
32,968 KB
testcase_20 AC 34 ms
28,224 KB
testcase_21 AC 28 ms
25,112 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 29 ms
27,176 KB
testcase_27 AC 62 ms
43,708 KB
testcase_28 AC 68 ms
45,888 KB
testcase_29 AC 68 ms
46,016 KB
testcase_30 AC 67 ms
43,824 KB
testcase_31 AC 68 ms
41,792 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 int[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