For a certain race, 3 teams were allowed to enter 3 members each. A team earned 6 - n points whenever one of its members finished in nth place, where 1 <= n <= 5. There were no ties, disqualifications, or withdrawals. If no team earned more than 6 points, what is the least possible score a team could have earned?
0
1
2
3
4
先把1,2,3,4,5加起来,这就是3各队一共的总分(3个前提条件已给),又说每个队不超过6,那么就让两个队6分(其实就是一个队的两个队员分别拿到1,5分,另一个不拿分;另一个队的两个队员拿到2,4分),另一个不拿分,因此,剩下的3分就是一个队可得到的最低分,其实就是这个队的一个对员拿了3分,其两个都在比赛的五名之后,不拿分。所以选D.
登录 或 注册 后可以参加讨论