/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 324.0 KiB
#2 Wrong Answer 14ms 1.465 MiB
#3 Wrong Answer 14ms 1.465 MiB
#4 Accepted 13ms 772.0 KiB
#5 Accepted 13ms 772.0 KiB
#6 Accepted 13ms 536.0 KiB
#7 Accepted 16ms 600.0 KiB
#8 Accepted 48ms 572.0 KiB
#9 Accepted 39ms 596.0 KiB

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-10-03 13:49:54
Judged By
Score
80
Total Time
48ms
Peak Memory
1.465 MiB