Since all elements are distinct, there is a unique largest element. The task is to identify any one element that is not the maximum, using the fewest comparisons in the worst case.
Select any two distinct elements from the list, say $a$ and $b$. Perform a single comparison:
- If $a < b$, then $a$ cannot be the largest.
- If $b < a$, then $b$ cannot be the largest.
In either case, the smaller of the two is guaranteed not to be the maximum. Thus, one comparison suffices to produce a valid answer.
No algorithm can do better than one comparison (since without any comparison, we have no information about relative order), and no additional comparisons are necessary.
Hence, the minimum number of comparisons required is 1.
Final Answer:
$$
\boxed{\text{A. }1}
$$