-
Notifications
You must be signed in to change notification settings - Fork 0
/
Grading_Students.py
51 lines (42 loc) · 1.31 KB
/
Grading_Students.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#https://www.hackerrank.com/challenges/grading/problem?isFullScreen=true
#!/bin/python3
import math
import os
import random
import re
import sys
#
# Complete the 'gradingStudents' function below.
#
# The function is expected to return an INTEGER_ARRAY.
# The function accepts INTEGER_ARRAY grades as parameter.
#
def gradingStudents(grades):
rounded_grades = []
for x in range(0, len(grades)):
if grades[x] < 38:
rounded_grades.append(grades[x])
elif (5 * round(grades[x]/5) - grades[x]) < 3 and (5 * round(grades[x]/5) - grades[x]) > -1:
rounded_grades.append(5 * round(grades[x]/5))
else: rounded_grades.append(grades[x])
return rounded_grades
# or def gradingStudents(grades):
# rounded_grades = []
# for x in grades:
# if x >=38:
# mod5 = x % 5
# if mod5 >= 3:
# x += (5-mod5)
# rounded_grades.append(x)
# return rounded_grades
if __name__ == '__main__':
fptr = open(os.environ['OUTPUT_PATH'], 'w')
grades_count = int(input().strip())
grades = []
for _ in range(grades_count):
grades_item = int(input().strip())
grades.append(grades_item)
result = gradingStudents(grades)
fptr.write('\n'.join(map(str, result)))
fptr.write('\n')
fptr.close()