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