CSES - E4590 2018 6 - Results
Submission details
Task:Anagrams
Sender:chk
Submission time:2018-10-20 13:24:59 +0300
Language:Python3
Status:READY
Result:ACCEPTED
Test results
testverdicttime
#1UNKNOWN--details
#2UNKNOWN--details
#3UNKNOWN--details
#4UNKNOWN--details
#5UNKNOWN--details
#6UNKNOWN--details
#7UNKNOWN--details
#8UNKNOWN--details
#9UNKNOWN--details

Code

n=int(input())
#print("".join(['a','b','c']))
s,d=set(),dict()
for i in range(n):
    t=input().strip()
    t1="".join(sorted(t))
    if t1 in d:
        d[t1].add(t)
        s.add(t1)
    else: d[t1]=set((t,))
print(len(s))
#print(s,d,end="\n \n")
for c in s:
    print(len(d[c]))
    print(*d[c],sep="\n")

Test details

Test 1

Verdict: UNKNOWN

input
68760
aakkonen
aakkosellinen
aakkosellisesti
aakkosellisuus
...

correct output
3076
2
haaraantua
raahaantua
2
...

user output
(not available)

Test 2

Verdict: UNKNOWN

input
370099
a
aa
aaa
aah
...

correct output
30178
2
basiparachromatin
marsipobranchiata
2
...

user output
(not available)

Test 3

Verdict: UNKNOWN

input
100000
cnhmuewgnum
dxkmhzhetnmxadtcy
hfjqwavsiguwpludsketibe
xwxolrmvkz
...

correct output
0

user output
(not available)

Test 4

Verdict: UNKNOWN

input
400000
vlcsa
eltwde
wdcwwkubs
tmuxbirj
...

correct output
0

user output
(not available)

Test 5

Verdict: UNKNOWN

input
400000
ebhfigdacjlk
aecfdijlhkgb
jfekhbidacgl
cehajbidfklg
...

correct output
1
400000
abcdeighjlfk
abcdeiglhfjk
abcdfkilejgh
...

user output
(not available)

Test 6

Verdict: UNKNOWN

input
400000
cbaabghadefb
hbbgfaeabdac
abaedcbgfbha
hcfadbbbeaag
...

correct output
1
400000
aaabbbcfegdh
aaabbbcfghed
aaabbbdcgfhe
...

user output
(not available)

Test 7

Verdict: UNKNOWN

input
1
a

correct output
0

user output
(not available)

Test 8

Verdict: UNKNOWN

input
2
ab
ba

correct output
1
2
ab
ba

user output
(not available)

Test 9

Verdict: UNKNOWN

input
2
aa
ab

correct output
0

user output
(not available)