-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrading.py
56 lines (40 loc) · 1 KB
/
grading.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
52
53
54
55
56
#!/bin/python3
import math
import os
import random
import re
import sys
def findNextDivByFive(number):
count = 0
while True:
current = number + count
if current % 5 == 0:
return current
else:
count += 1
def diffCheck(number):
nextDiv = findNextDivByFive(number)
return (nextDiv - number) < 3
def gradingStudents(grades):
res = []
for grade in grades:
if grade < 38:
res.append(grade)
continue
if diffCheck(grade):
res.append(findNextDivByFive(grade))
else:
res.append(grade)
return res
print(gradingStudents([37, 38]))
# 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()