CSES - Datatähti 2016 alku - Results
Submission details
Task:Osajono
Sender:Allu
Submission time:2015-09-29 13:00:55 +0300
Language:Python2
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.07 s1details
#20.06 s1details
#30.05 s1details
#40.07 s1details
#50.06 s1details
#60.06 s2details
#70.06 s2details
#80.07 s2details
#90.06 s2details
#100.06 s2details
#110.07 s3details
#120.08 s3details
#130.06 s3details
#140.06 s3details
#150.06 s3details

Code

from math import factorial
inp = raw_input()
num = len(inp)
d = {}
l = ""

for a in inp:
	if a in l:
		d[a] += 1
	else:
		d[a] = 1
		l += a

for n in d.values():
	if n != 1:
		if n == 2:
			num += 1
		else:
			num += math.factorial(n) / (2 * math.factorial(n - 2))

print (int(num))

Test details

Test 1

Group: 1

Verdict:

input
BBBAABBBAAAABBAAAABAABAABBBBBB...

correct output
2554

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 19, in <module>
    num += math.factorial(n) / (2 * math.factorial(n - 2))
NameError: name 'math' is not defined

Test 2

Group: 1

Verdict:

input
GDFVYWQCZAFGICSXOSWBZMGPDBSSVL...

correct output
299

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 19, in <module>
    num += math.factorial(n) / (2 * math.factorial(n - 2))
NameError: name 'math' is not defined

Test 3

Group: 1

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAZAAAA...

correct output
4314

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 19, in <module>
    num += math.factorial(n) / (2 * math.factorial(n - 2))
NameError: name 'math' is not defined

Test 4

Group: 1

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
4231

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 19, in <module>
    num += math.factorial(n) / (2 * math.factorial(n - 2))
NameError: name 'math' is not defined

Test 5

Group: 1

Verdict:

input
QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ...

correct output
5050

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 19, in <module>
    num += math.factorial(n) / (2 * math.factorial(n - 2))
NameError: name 'math' is not defined

Test 6

Group: 2

Verdict:

input
BBABABBBABBAABBABBABAABAAABABA...

correct output
6253029

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 19, in <module>
    num += math.factorial(n) / (2 * math.factorial(n - 2))
NameError: name 'math' is not defined

Test 7

Group: 2

Verdict:

input
RBKJMLDVQMKHYKCNDIVVKOMFUXTFMG...

correct output
485173

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 19, in <module>
    num += math.factorial(n) / (2 * math.factorial(n - 2))
NameError: name 'math' is not defined

Test 8

Group: 2

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
12427725

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 19, in <module>
    num += math.factorial(n) / (2 * math.factorial(n - 2))
NameError: name 'math' is not defined

Test 9

Group: 2

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
12467549

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 19, in <module>
    num += math.factorial(n) / (2 * math.factorial(n - 2))
NameError: name 'math' is not defined

Test 10

Group: 2

Verdict:

input
QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ...

correct output
12502500

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 19, in <module>
    num += math.factorial(n) / (2 * math.factorial(n - 2))
NameError: name 'math' is not defined

Test 11

Group: 3

Verdict:

input
BAAAAABABBABAABAABABABBBABBAAB...

correct output
2500051369

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 19, in <module>
    num += math.factorial(n) / (2 * math.factorial(n - 2))
NameError: name 'math' is not defined

Test 12

Group: 3

Verdict:

input
ABBURXDRVXAYBPXXOQZNYHLWGUEEWR...

correct output
192407124

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 19, in <module>
    num += math.factorial(n) / (2 * math.factorial(n - 2))
NameError: name 'math' is not defined

Test 13

Group: 3

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
4998050400

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 19, in <module>
    num += math.factorial(n) / (2 * math.factorial(n - 2))
NameError: name 'math' is not defined

Test 14

Group: 3

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
4998850144

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 19, in <module>
    num += math.factorial(n) / (2 * math.factorial(n - 2))
NameError: name 'math' is not defined

Test 15

Group: 3

Verdict:

input
QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ...

correct output
5000050000

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 19, in <module>
    num += math.factorial(n) / (2 * math.factorial(n - 2))
NameError: name 'math' is not defined