CSES - Datatähti 2016 alku - Results
Submission details
Task:Osajono
Sender:MrAurela
Submission time:2015-10-03 10:14:32 +0300
Language:Python2
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.05 s1details
#20.06 s1details
#30.05 s1details
#40.06 s1details
#50.05 s1details
#60.04 s2details
#70.05 s2details
#80.06 s2details
#90.05 s2details
#100.05 s2details
#110.06 s3details
#120.05 s3details
#130.05 s3details
#140.05 s3details
#150.04 s3details

Code

import sys

def main(merkit):
    print merkit
    tulos=0
    for i in range(len(merkit)):
        tulos+=merkit[i:].count(merkit[i])
    print tulos
    return tulos

if __name__ == "__main__":
    main(sys.stdin)

Test details

Test 1

Group: 1

Verdict:

input
BBBAABBBAAAABBAAAABAABAABBBBBB...

correct output
2554

user output
<open file '<stdin>', mode 'r'...

Error:
Traceback (most recent call last):
  File "input/code.py", line 13, in <module>
    main(sys.stdin)
  File "input/code.py", line 7, in main
    for i in range(len(merkit)):
TypeError: object of type 'file' has no len()

Test 2

Group: 1

Verdict:

input
GDFVYWQCZAFGICSXOSWBZMGPDBSSVL...

correct output
299

user output
<open file '<stdin>', mode 'r'...

Error:
Traceback (most recent call last):
  File "input/code.py", line 13, in <module>
    main(sys.stdin)
  File "input/code.py", line 7, in main
    for i in range(len(merkit)):
TypeError: object of type 'file' has no len()

Test 3

Group: 1

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAZAAAA...

correct output
4314

user output
<open file '<stdin>', mode 'r'...

Error:
Traceback (most recent call last):
  File "input/code.py", line 13, in <module>
    main(sys.stdin)
  File "input/code.py", line 7, in main
    for i in range(len(merkit)):
TypeError: object of type 'file' has no len()

Test 4

Group: 1

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
4231

user output
<open file '<stdin>', mode 'r'...

Error:
Traceback (most recent call last):
  File "input/code.py", line 13, in <module>
    main(sys.stdin)
  File "input/code.py", line 7, in main
    for i in range(len(merkit)):
TypeError: object of type 'file' has no len()

Test 5

Group: 1

Verdict:

input
QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ...

correct output
5050

user output
<open file '<stdin>', mode 'r'...

Error:
Traceback (most recent call last):
  File "input/code.py", line 13, in <module>
    main(sys.stdin)
  File "input/code.py", line 7, in main
    for i in range(len(merkit)):
TypeError: object of type 'file' has no len()

Test 6

Group: 2

Verdict:

input
BBABABBBABBAABBABBABAABAAABABA...

correct output
6253029

user output
<open file '<stdin>', mode 'r'...

Error:
Traceback (most recent call last):
  File "input/code.py", line 13, in <module>
    main(sys.stdin)
  File "input/code.py", line 7, in main
    for i in range(len(merkit)):
TypeError: object of type 'file' has no len()

Test 7

Group: 2

Verdict:

input
RBKJMLDVQMKHYKCNDIVVKOMFUXTFMG...

correct output
485173

user output
<open file '<stdin>', mode 'r'...

Error:
Traceback (most recent call last):
  File "input/code.py", line 13, in <module>
    main(sys.stdin)
  File "input/code.py", line 7, in main
    for i in range(len(merkit)):
TypeError: object of type 'file' has no len()

Test 8

Group: 2

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
12427725

user output
<open file '<stdin>', mode 'r'...

Error:
Traceback (most recent call last):
  File "input/code.py", line 13, in <module>
    main(sys.stdin)
  File "input/code.py", line 7, in main
    for i in range(len(merkit)):
TypeError: object of type 'file' has no len()

Test 9

Group: 2

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
12467549

user output
<open file '<stdin>', mode 'r'...

Error:
Traceback (most recent call last):
  File "input/code.py", line 13, in <module>
    main(sys.stdin)
  File "input/code.py", line 7, in main
    for i in range(len(merkit)):
TypeError: object of type 'file' has no len()

Test 10

Group: 2

Verdict:

input
QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ...

correct output
12502500

user output
<open file '<stdin>', mode 'r'...

Error:
Traceback (most recent call last):
  File "input/code.py", line 13, in <module>
    main(sys.stdin)
  File "input/code.py", line 7, in main
    for i in range(len(merkit)):
TypeError: object of type 'file' has no len()

Test 11

Group: 3

Verdict:

input
BAAAAABABBABAABAABABABBBABBAAB...

correct output
2500051369

user output
<open file '<stdin>', mode 'r'...

Error:
Traceback (most recent call last):
  File "input/code.py", line 13, in <module>
    main(sys.stdin)
  File "input/code.py", line 7, in main
    for i in range(len(merkit)):
TypeError: object of type 'file' has no len()

Test 12

Group: 3

Verdict:

input
ABBURXDRVXAYBPXXOQZNYHLWGUEEWR...

correct output
192407124

user output
<open file '<stdin>', mode 'r'...

Error:
Traceback (most recent call last):
  File "input/code.py", line 13, in <module>
    main(sys.stdin)
  File "input/code.py", line 7, in main
    for i in range(len(merkit)):
TypeError: object of type 'file' has no len()

Test 13

Group: 3

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
4998050400

user output
<open file '<stdin>', mode 'r'...

Error:
Traceback (most recent call last):
  File "input/code.py", line 13, in <module>
    main(sys.stdin)
  File "input/code.py", line 7, in main
    for i in range(len(merkit)):
TypeError: object of type 'file' has no len()

Test 14

Group: 3

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
4998850144

user output
<open file '<stdin>', mode 'r'...

Error:
Traceback (most recent call last):
  File "input/code.py", line 13, in <module>
    main(sys.stdin)
  File "input/code.py", line 7, in main
    for i in range(len(merkit)):
TypeError: object of type 'file' has no len()

Test 15

Group: 3

Verdict:

input
QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ...

correct output
5000050000

user output
<open file '<stdin>', mode 'r'...

Error:
Traceback (most recent call last):
  File "input/code.py", line 13, in <module>
    main(sys.stdin)
  File "input/code.py", line 7, in main
    for i in range(len(merkit)):
TypeError: object of type 'file' has no len()