QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#623037#5722. Rainbow StringsTheZachManRE 0ms0kbPython3148b2024-10-09 09:44:252024-10-09 09:44:26

Judging History

你现在查看的是最新测评结果

  • [2024-10-09 09:44:26]
  • 评测
  • 测评结果:RE
  • 用时:0ms
  • 内存:0kb
  • [2024-10-09 09:44:25]
  • 提交

answer

s = input()

d = {}

for c in s:
  if c in d:
    c[d] += 1
  else:
    c[d]=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
Dangerous Syscalls

input:

aab

output:


result: