CSES - Datatähti 2016 alku - Results
Submission details
Task:Osajono
Sender:AnttiR
Submission time:2015-09-29 14:34:00 +0300
Language:Python3
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.07 s1details
#20.08 s1details
#30.08 s1details
#40.07 s1details
#50.09 s1details
#60.08 s2details
#70.08 s2details
#80.08 s2details
#90.08 s2details
#100.08 s2details
#110.09 s3details
#120.07 s3details
#130.08 s3details
#140.07 s3details
#150.07 s3details

Code

input = raw_input()
charAmounts = {}
for c in input:
    if c in charAmounts:
	    charAmounts[c] = charAmounts[c] + 1
    else:
	    charAmounts[c] = 1
tot = 0
for key, value in charAmounts.items():
    if value == 1:
	    tot+=1
    else:
	    tot+=value+(value*value-1)/2
print tot

Test details

Test 1

Group: 1

Verdict:

input
BBBAABBBAAAABBAAAABAABAABBBBBB...

correct output
2554

user output
(empty)

Error:
File "input/code.py", line 14
    print tot
            ^
SyntaxError: Missing parentheses in call to 'print'

Test 2

Group: 1

Verdict:

input
GDFVYWQCZAFGICSXOSWBZMGPDBSSVL...

correct output
299

user output
(empty)

Error:
File "input/code.py", line 14
    print tot
            ^
SyntaxError: Missing parentheses in call to 'print'

Test 3

Group: 1

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAZAAAA...

correct output
4314

user output
(empty)

Error:
File "input/code.py", line 14
    print tot
            ^
SyntaxError: Missing parentheses in call to 'print'

Test 4

Group: 1

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
4231

user output
(empty)

Error:
File "input/code.py", line 14
    print tot
            ^
SyntaxError: Missing parentheses in call to 'print'

Test 5

Group: 1

Verdict:

input
QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ...

correct output
5050

user output
(empty)

Error:
File "input/code.py", line 14
    print tot
            ^
SyntaxError: Missing parentheses in call to 'print'

Test 6

Group: 2

Verdict:

input
BBABABBBABBAABBABBABAABAAABABA...

correct output
6253029

user output
(empty)

Error:
File "input/code.py", line 14
    print tot
            ^
SyntaxError: Missing parentheses in call to 'print'

Test 7

Group: 2

Verdict:

input
RBKJMLDVQMKHYKCNDIVVKOMFUXTFMG...

correct output
485173

user output
(empty)

Error:
File "input/code.py", line 14
    print tot
            ^
SyntaxError: Missing parentheses in call to 'print'

Test 8

Group: 2

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
12427725

user output
(empty)

Error:
File "input/code.py", line 14
    print tot
            ^
SyntaxError: Missing parentheses in call to 'print'

Test 9

Group: 2

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
12467549

user output
(empty)

Error:
File "input/code.py", line 14
    print tot
            ^
SyntaxError: Missing parentheses in call to 'print'

Test 10

Group: 2

Verdict:

input
QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ...

correct output
12502500

user output
(empty)

Error:
File "input/code.py", line 14
    print tot
            ^
SyntaxError: Missing parentheses in call to 'print'

Test 11

Group: 3

Verdict:

input
BAAAAABABBABAABAABABABBBABBAAB...

correct output
2500051369

user output
(empty)

Error:
File "input/code.py", line 14
    print tot
            ^
SyntaxError: Missing parentheses in call to 'print'

Test 12

Group: 3

Verdict:

input
ABBURXDRVXAYBPXXOQZNYHLWGUEEWR...

correct output
192407124

user output
(empty)

Error:
File "input/code.py", line 14
    print tot
            ^
SyntaxError: Missing parentheses in call to 'print'

Test 13

Group: 3

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
4998050400

user output
(empty)

Error:
File "input/code.py", line 14
    print tot
            ^
SyntaxError: Missing parentheses in call to 'print'

Test 14

Group: 3

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
4998850144

user output
(empty)

Error:
File "input/code.py", line 14
    print tot
            ^
SyntaxError: Missing parentheses in call to 'print'

Test 15

Group: 3

Verdict:

input
QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ...

correct output
5000050000

user output
(empty)

Error:
File "input/code.py", line 14
    print tot
            ^
SyntaxError: Missing parentheses in call to 'print'