You are viewing a single comment's thread. Return to all comments →
from collections import Counter X = int(input()) size = list(map(int, input().split(' '))) csize = Counter(size) N = int(input()) sum = 0 for i in range(N): s,price = list(map(int, input().split(' '))) if s in csize.keys(): if csize[s]>0: sum += price csize[s] -= 1
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 →
print(sum)