CSES - Putka Open 2015 – 1/6 - Results
Submission details
Task:Jakkara
Sender:
Submission time:2015-07-19 21:56:20 +0300
Language:Python2
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.09 s1details
#20.08 s1details
#30.09 s1details
#40.10 s1details
#50.09 s1details
#60.10 s2details
#70.09 s2details
#80.09 s2details
#90.10 s2details
#100.09 s2details
#110.09 s3details
#120.09 s3details
#130.09 s3details
#140.09 s3details
#150.09 s3details

Code

def median(lst):
    lst = sorted(lst)
    if len(lst) < 1:
            return None
    if len(lst) %2 == 1:
            return lst[((len(lst)+1)/2)-1]
    else:
            return float(sum(lst[(len(lst)/2)-1:(len(lst)/2)+1]))/2.0

def count_steps(number_int,median_int):
    steps=0
    while(not number_int == median_int):
        if(number_int > median_int):
            number_int = number_int - 1
            steps=steps+1
        elif(number_int < median_int):
            number_int = number_int + 1
            steps=steps+1
        
    
    return steps
    
            
a = raw_input("a:")
b = raw_input("b:")
c = raw_input("c:")
d = raw_input("d:")

list = []
list.append(float(a))
list.append(float(b))
list.append(float(c))
list.append(float(d))

mediaani = int(median(list))

allsteps=0
for number in list:
    allsteps = allsteps + count_steps(int(number),int(mediaani))

print allsteps

Test details

Test 1

Group: 1

Verdict:

input
2 4 2 1

correct output
3

user output
a:b:

Error:
Traceback (most recent call last):
  File "input/code.py", line 25, in <module>
    b = raw_input("b:")
EOFError: EOF when reading a line

Test 2

Group: 1

Verdict:

input
4 4 5 1

correct output
4

user output
a:b:

Error:
Traceback (most recent call last):
  File "input/code.py", line 25, in <module>
    b = raw_input("b:")
EOFError: EOF when reading a line

Test 3

Group: 1

Verdict:

input
1 3 3 3

correct output
2

user output
a:b:

Error:
Traceback (most recent call last):
  File "input/code.py", line 25, in <module>
    b = raw_input("b:")
EOFError: EOF when reading a line

Test 4

Group: 1

Verdict:

input
4 5 2 1

correct output
6

user output
a:b:

Error:
Traceback (most recent call last):
  File "input/code.py", line 25, in <module>
    b = raw_input("b:")
EOFError: EOF when reading a line

Test 5

Group: 1

Verdict:

input
1 2 3 4

correct output
4

user output
a:b:

Error:
Traceback (most recent call last):
  File "input/code.py", line 25, in <module>
    b = raw_input("b:")
EOFError: EOF when reading a line

Test 6

Group: 2

Verdict:

input
755 181 899 550

correct output
923

user output
a:b:

Error:
Traceback (most recent call last):
  File "input/code.py", line 25, in <module>
    b = raw_input("b:")
EOFError: EOF when reading a line

Test 7

Group: 2

Verdict:

input
415 158 928 660

correct output
1015

user output
a:b:

Error:
Traceback (most recent call last):
  File "input/code.py", line 25, in <module>
    b = raw_input("b:")
EOFError: EOF when reading a line

Test 8

Group: 2

Verdict:

input
8 786 277 786

correct output
1287

user output
a:b:

Error:
Traceback (most recent call last):
  File "input/code.py", line 25, in <module>
    b = raw_input("b:")
EOFError: EOF when reading a line

Test 9

Group: 2

Verdict:

input
740 537 892 1000

correct output
615

user output
a:b:

Error:
Traceback (most recent call last):
  File "input/code.py", line 25, in <module>
    b = raw_input("b:")
EOFError: EOF when reading a line

Test 10

Group: 2

Verdict:

input
805 794 799 591

correct output
219

user output
a:b:

Error:
Traceback (most recent call last):
  File "input/code.py", line 25, in <module>
    b = raw_input("b:")
EOFError: EOF when reading a line

Test 11

Group: 3

Verdict:

input
918046201 377309798 763092200 ...

correct output
753184325

user output
a:b:

Error:
Traceback (most recent call last):
  File "input/code.py", line 25, in <module>
    b = raw_input("b:")
EOFError: EOF when reading a line

Test 12

Group: 3

Verdict:

input
185264934 19222757 522094385 9...

correct output
595938743

user output
a:b:

Error:
Traceback (most recent call last):
  File "input/code.py", line 25, in <module>
    b = raw_input("b:")
EOFError: EOF when reading a line

Test 13

Group: 3

Verdict:

input
727047841 260674959 553589480 ...

correct output
678802024

user output
a:b:

Error:
Traceback (most recent call last):
  File "input/code.py", line 25, in <module>
    b = raw_input("b:")
EOFError: EOF when reading a line

Test 14

Group: 3

Verdict:

input
769070856 877861912 488304785 ...

correct output
614008750

user output
a:b:

Error:
Traceback (most recent call last):
  File "input/code.py", line 25, in <module>
    b = raw_input("b:")
EOFError: EOF when reading a line

Test 15

Group: 3

Verdict:

input
1 1 1 1000000000

correct output
999999999

user output
a:b:

Error:
Traceback (most recent call last):
  File "input/code.py", line 25, in <module>
    b = raw_input("b:")
EOFError: EOF when reading a line