結果
| 問題 |
No.2419 MMA文字列2
|
| コンテスト | |
| ユーザー |
umezo
|
| 提出日時 | 2023-08-12 13:45:09 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 11 ms / 2,000 ms |
| コード長 | 457 bytes |
| コンパイル時間 | 2,036 ms |
| コンパイル使用メモリ | 194,324 KB |
| 最終ジャッジ日時 | 2025-02-16 03:33:26 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 30 |
ソースコード
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
#include<bits/stdc++.h>
using namespace std;
int main(){
ios::sync_with_stdio(false);
std::cin.tie(nullptr);
string s;
cin>>s;
int n=s.size();
vector<ll> A(26);
ll ans=0;
rep(i,n){
int k=s[i]-'A';
rep(j,26){
if(j==k) continue;
ans+=A[j]*(A[j]-1)/2;
}
A[k]++;
}
cout<<ans<<endl;
return 0;
}
umezo