Python, 340053
A terrible score from a terrible algorithm, this answer exists more to give a small Python script that displays scoring.
H=lambda s:sum(map(ord, s))%(2**24)
To score:
hashes = []
with open("british-english-huge.txt") as f:
for line in f:
word = line.rstrip("\n")
hashes.append(H(word))
from collections import Counter
print(sum(v for k, v in Counter(hashes).items() if v > 1))