← Back to List

17851번: This Problem’s a Slam Dunk ↗

Solutions

Python 3
151 B | 151 chars
a = sorted([*map(int,input().split())])
b = sorted([*map(int,input().split())])

cnt = 0
for i in range(5):
  if a[i] > b[i]:
    cnt += 1

print(cnt)