CF478A.Initial Bet

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

There are five people playing a game called "Generosity". Each person gives some non-zero number of coins bb as an initial bet. After all players make their bets of bb coins, the following operation is repeated for several times: a coin is passed from one player to some other player.

Your task is to write a program that can, given the number of coins each player has at the end of the game, determine the size bb of the initial bet or find out that such outcome of the game cannot be obtained for any positive number of coins bb in the initial bet.

输入格式

There are five people playing a game called "Generosity". Each person gives some non-zero number of coins bb as an initial bet. After all players make their bets of bb coins, the following operation is repeated for several times: a coin is passed from one player to some other player.

Your task is to write a program that can, given the number of coins each player has at the end of the game, determine the size bb of the initial bet or find out that such outcome of the game cannot be obtained for any positive number of coins bb in the initial bet.

输出格式

Print the only line containing a single positive integer bb — the number of coins in the initial bet of each player. If there is no such value of bb , then print the only value "-1" (quotes for clarity).

输入输出样例

  • 输入#1

    2 5 4 0 4
    

    输出#1

    3
    
  • 输入#2

    4 5 9 2 1
    

    输出#2

    -1
    

说明/提示

In the first sample the following sequence of operations is possible:

  1. One coin is passed from the fourth player to the second player;
  2. One coin is passed from the fourth player to the fifth player;
  3. One coin is passed from the first player to the third player;
  4. One coin is passed from the fourth player to the second player.
首页