結果

問題 No.2419 MMA文字列2
ユーザー marble72marble72
提出日時 2023-08-12 16:32:53
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 550 bytes
コンパイル時間 1,615 ms
コンパイル使用メモリ 175,200 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-20 06:15:25
合計ジャッジ時間 3,390 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    string S;
    cin >> S;
    int l = S.length();
    ll ans=0;
    map<char,ll> ser;
    for(int i=0;i<l;i++){
        int a = 'A';
        for(int j=0;j<26;j++){
            char c = (char)(a+j);
            if(S[i] == c){
                continue;
            }
            if(ser[c] >= 2){
                ll su = ser[c];
                ll pl = su*(su-1)/2;
                ans += pl;
            }
        }
        ser[S[i]]++;
    }
    cout << ans << endl;
}
0