QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#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)
详细
Test #1:
score: 0
Wrong Answer
time: 6ms
memory: 10400kb
input:
aab
output:
2
result:
wrong answer 1st lines differ - expected: '6', found: '2'