/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 496.0 KiB
#2 Wrong Answer 17ms 1.633 MiB
#3 Wrong Answer 18ms 1.469 MiB

Code

#include <iostream>
#include <vector>
#include <unordered_map>

using namespace std;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.precision(10);
    cout << fixed;

    int t;
    cin >> t;

    while (t--) {
        int n;
        cin >> n;
        string s;
        cin >> s;

        unordered_map<char, int> charCount;
        for (char c : s) {
            charCount[c]++;
        }

        int totalSwaps = 0;
        for (auto& entry : charCount) {
            int count = entry.second;
            totalSwaps += (count * (count - 1));
        }

        cout << totalSwaps << endl;
    }

    return 0;
}

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:37:51
Judged At
2024-11-11 03:32:58
Judged By
Score
10
Total Time
18ms
Peak Memory
1.633 MiB