結果

問題 No.2419 MMA文字列2
ユーザー dyktr_06dyktr_06
提出日時 2023-07-26 12:57:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 619 bytes
コンパイル時間 2,125 ms
コンパイル使用メモリ 199,320 KB
実行使用メモリ 51,984 KB
最終ジャッジ日時 2024-04-12 11:03:28
合計ジャッジ時間 4,350 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 17 ms
14,080 KB
testcase_13 AC 4 ms
6,944 KB
testcase_14 AC 32 ms
24,192 KB
testcase_15 AC 20 ms
16,000 KB
testcase_16 AC 34 ms
25,088 KB
testcase_17 AC 10 ms
9,856 KB
testcase_18 AC 35 ms
25,984 KB
testcase_19 AC 35 ms
26,752 KB
testcase_20 AC 11 ms
10,624 KB
testcase_21 AC 9 ms
8,320 KB
testcase_22 AC 70 ms
51,812 KB
testcase_23 AC 71 ms
51,848 KB
testcase_24 AC 70 ms
51,864 KB
testcase_25 AC 71 ms
51,876 KB
testcase_26 AC 10 ms
9,088 KB
testcase_27 AC 71 ms
51,984 KB
testcase_28 AC 73 ms
51,952 KB
testcase_29 AC 72 ms
51,968 KB
testcase_30 AC 72 ms
51,848 KB
testcase_31 AC 72 ms
51,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    string s; cin >> s;
    int n = s.size();
    long long ans = 0;
    vector<vector<long long>> sum(n + 1, vector<long long>(26));
    for(int i = 0; i < n; i++){
        for(int j = 0; j < 26; j++){
            sum[i + 1][j] += sum[i][j];
        }
        sum[i + 1][s[i] - 'A']++;
    }
    for(int i = n - 1; i >= 0; i--){
        for(int j = 0; j < 26; j++){
            if(s[i] - 'A' == j) continue;
            ans += sum[i][j] * (sum[i][j] - 1) / 2;
        }
    }
    cout << ans << "\n";
}
0