Accepted
Code
#include <bits/stdc++.h>
using namespace std;
#define int long long
int32_t main () {
cin.tie(0)->sync_with_stdio(0);
int t = 1;
cin >> t;
while (t--) {
int n, ans = 0;
cin >> n;
string s;
cin >> s;
int a[26]{};
for (auto u : s) a[u-'a']++;
for (int i = 0; i < 26; i++) {
ans += ((a[i]*a[i])-a[i]);
}
cout << ans << "\n";
}
}
Information
- Submit By
- Type
- Submission
- Problem
- P1038 Do not touch my string
- Contest
- Brain Booster #3
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-05-06 16:30:02
- Judged At
- 2024-11-11 03:33:02
- Judged By
- Score
- 100
- Total Time
- 6ms
- Peak Memory
- 1.664 MiB