You are viewing a single comment's thread. Return to all comments →
from collections import Counter X = int(input("")) X_list = list(map(int, input("").split())) N = int(input("")) shoe_size = Counter(X_list) sum = 0 for i in range(N): size, amount = tuple(map(int, input("").split())) if size in shoe_size.keys() and shoe_size[size] != 0: shoe_size[size] -= 1 sum += amount print(sum)
Seems like cookies are disabled on this browser, please enable them to open this website
I agree to HackerRank's Terms of Service and Privacy Policy.
collections.Counter()
You are viewing a single comment's thread. Return to all comments →