Calculate the number of duplicates for each character in a string.
Treat uppercase and lowercase characters as distinct, and include spaces and punctuation as characters. Return a dictionary containing only characters that occur at least twice, with each character mapped to its total occurrence count. Preserve the order in which repeated characters first appear.
Function: def count_duplicate_characters(s):
def count_duplicate_characters(s):