forked from strang3-r/Leetcode75
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCreate Grading Students problem.py
46 lines (33 loc) · 1.11 KB
/
Create Grading Students problem.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
#!/bin/python3
import math
import os
import random
import re
import sys
def gradingStudents(grades):
for i in range(0,len(grades)):
if grades[i] < 38: #grade is less than 38 , no rounding occurs as the result will still be a failing grade
continue
else:
temp = grades[i]
te = temp % 5 #If the difference between grade and the next multiple of 5 is less than 3 , round up to the next multiple of 5
if te == 3:
temp = temp + 2
grades[i] = temp
elif te == 4:
temp = temp + 1
grades[i] = temp
else:
continue
return 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()