結果

問題 No.2419 MMA文字列2
ユーザー t98slidert98slider
提出日時 2023-08-12 13:49:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 21 ms / 2,000 ms
コード長 647 bytes
コンパイル時間 1,584 ms
コンパイル使用メモリ 168,592 KB
実行使用メモリ 44,204 KB
最終ジャッジ日時 2024-11-19 16:21:49
合計ジャッジ時間 2,844 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 8 ms
12,452 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 10 ms
20,864 KB
testcase_15 AC 8 ms
14,064 KB
testcase_16 AC 11 ms
21,688 KB
testcase_17 AC 6 ms
8,776 KB
testcase_18 AC 11 ms
22,528 KB
testcase_19 AC 11 ms
23,040 KB
testcase_20 AC 5 ms
9,472 KB
testcase_21 AC 5 ms
7,656 KB
testcase_22 AC 21 ms
44,160 KB
testcase_23 AC 21 ms
44,160 KB
testcase_24 AC 20 ms
44,160 KB
testcase_25 AC 20 ms
44,160 KB
testcase_26 AC 5 ms
8,064 KB
testcase_27 AC 21 ms
44,032 KB
testcase_28 AC 20 ms
44,188 KB
testcase_29 AC 20 ms
44,204 KB
testcase_30 AC 21 ms
44,196 KB
testcase_31 AC 21 ms
44,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    string s;
    cin >> s;
    int n = s.size();
    ll ans = 0;
    vector<array<ll, 26>> cnt(n + 1);
    array<ll, 26> tmp{};
    cnt[0] = tmp;
    for(int i = 0; i < n; i++){
        tmp[s[i] - 'A']++;
        cnt[i + 1] = tmp;
    }
    /*for(int j = 0; j < 26; j++){
        cerr << tmp[j] << " ";
    }
    cerr << '\n';*/
    for(int i = 0; i < n; i++){
        ll l = cnt[i][s[i] - 'A'];
        ll r = cnt[n][s[i] - 'A'] - cnt[i][s[i] - 'A'];
        ans += l * (n - i - r);
    }
    cout << ans << '\n';
}
0