-
Notifications
You must be signed in to change notification settings - Fork 175
/
Copy pathsolution.py
61 lines (45 loc) · 1.15 KB
/
solution.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
57
58
59
60
61
#!/bin/python3
import math
import os
import random
import re
import sys
#
# Complete the 'maxCost' function below.
#
# The function is expected to return an INTEGER.
# The function accepts following parameters:
# 1. INTEGER_ARRAY cost
# 2. STRING_ARRAY labels
# 3. INTEGER dailyCount
#
def maxCost(cost, labels, dailyCount):
ans = 0
cur_cnt = 0
cur_cost = 0
for c, l in zip(cost, labels):
cur_cost += c
if l == "illegal":
continue
cur_cnt += 1
if cur_cnt == dailyCount:
ans = max(ans, cur_cost)
cur_cnt = 0
cur_cost = 0
return ans
if __name__ == '__main__':
fptr = open(os.environ['OUTPUT_PATH'], 'w')
cost_count = int(input().strip())
cost = []
for _ in range(cost_count):
cost_item = int(input().strip())
cost.append(cost_item)
labels_count = int(input().strip())
labels = []
for _ in range(labels_count):
labels_item = input()
labels.append(labels_item)
dailyCount = int(input().strip())
result = maxCost(cost, labels, dailyCount)
fptr.write(str(result) + '\n')
fptr.close()