9552022-02-05 12:34:08Kevinke12Vetélkedő (75 pont)cpp14Wrong answer 5/7575ms11784 KiB
#include <iostream>
#include <bits/stdc++.h>
using namespace std;

int N;
map<string, int> m;
string s;

int main()
{
    cin >> N;
    for(int i = 0; i < N; i++)
    {
        cin >> s;
        sort(s.begin(), s.end());
        m[s]++;
    }

    for(auto aktAdat:m)
    {
        if(aktAdat.second==1)
            cout << aktAdat.first << "\n";
    }
    return 0;
}
SubtaskSumTestVerdictTimeMemory
base5/75
1Accepted0/02ms1768 KiB
2Accepted0/075ms5368 KiB
3Wrong answer0/51ms2776 KiB
4Wrong answer0/51ms2776 KiB
5Wrong answer0/51ms2776 KiB
6Wrong answer0/51ms2784 KiB
7Wrong answer0/52ms2900 KiB
8Wrong answer0/52ms2916 KiB
9Accepted5/52ms2936 KiB
10Wrong answer0/537ms4736 KiB
11Wrong answer0/546ms5500 KiB
12Wrong answer0/552ms6552 KiB
13Wrong answer0/561ms7564 KiB
14Wrong answer0/571ms8804 KiB
15Wrong answer0/575ms10124 KiB
16Wrong answer0/574ms11012 KiB
17Wrong answer0/567ms11784 KiB