QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#623040 | #5722. Rainbow Strings | TheZachMan | WA | 6ms | 10400kb | Python3 | 148b | 2024-10-09 09:45:31 | 2024-10-09 09:45:32 |
Judging History
answer
s = input()
d = {}
for c in s:
if c in d:
d[c] += 1
else:
d[c]=1
o=1
for k in d:
o *= d[k]
o %= 11092019
print(o)
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 6ms
memory: 10400kb
input:
aab
output:
2
result:
wrong answer 1st lines differ - expected: '6', found: '2'