結果

問題 No.2419 MMA文字列2
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-08-12 13:58:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 2,350 ms
コンパイル使用メモリ 206,800 KB
実行使用メモリ 52,016 KB
最終ジャッジ日時 2024-11-19 16:54:11
合計ジャッジ時間 4,039 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 15 ms
14,080 KB
testcase_13 AC 4 ms
6,820 KB
testcase_14 AC 29 ms
24,192 KB
testcase_15 AC 18 ms
16,128 KB
testcase_16 AC 30 ms
25,088 KB
testcase_17 AC 9 ms
9,856 KB
testcase_18 AC 31 ms
26,112 KB
testcase_19 AC 31 ms
26,752 KB
testcase_20 AC 11 ms
10,624 KB
testcase_21 AC 8 ms
8,448 KB
testcase_22 AC 63 ms
51,796 KB
testcase_23 AC 62 ms
51,916 KB
testcase_24 AC 62 ms
51,908 KB
testcase_25 AC 62 ms
52,016 KB
testcase_26 AC 9 ms
9,088 KB
testcase_27 AC 62 ms
51,948 KB
testcase_28 AC 64 ms
51,856 KB
testcase_29 AC 63 ms
51,804 KB
testcase_30 AC 63 ms
51,808 KB
testcase_31 AC 65 ms
51,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

int main(){

    string S;
    cin >> S;
    ll N=S.size(), ans=0;

    vector<vector<ll>> cnt(N+1, vector<ll>(26));

    for (int i=1; i<=N; i++){
        cnt[i][S[i-1]-'A']++;
        for (int j=0; j<26; j++) cnt[i][j] += cnt[i-1][j];
    }

    for (int i=2; i<=N-1; i++){
        ans += cnt[i-1][S[i-1]-'A'] * (N-i-(cnt[N][S[i-1]-'A']-cnt[i][S[i-1]-'A']));
    }

    cout << ans << endl;

    return 0;
}
0