1689: 检查是否存在满足条件的数字组合

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:1 Solved:1

Description

给定一个正整数数组 

检查数组中是否存在满足规则的数组组合

规则: 

A=B+2C

Input

第一行输出数组的元素个数 

接下来一行输出所有数组元素 用空格隔开

Output

如果存在满足要求的数 

在同一行里依次输出 规则里 A/B/C的取值 用空格隔开 

如果不存在输出0

Sample Input Copy

4
2 7 3 0

Sample Output Copy

7 3 2