CF559A.Gerald's Hexagon

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Gerald got a very curious hexagon for his birthday. The boy found out that all the angles of the hexagon are equal to . Then he measured the length of its sides, and found that each of them is equal to an integer number of centimeters. There the properties of the hexagon ended and Gerald decided to draw on it.

He painted a few lines, parallel to the sides of the hexagon. The lines split the hexagon into regular triangles with sides of 1 centimeter. Now Gerald wonders how many triangles he has got. But there were so many of them that Gerald lost the track of his counting. Help the boy count the triangles.

输入格式

The first and the single line of the input contains 6 space-separated integers a1,a2,a3,a4,a5a_{1},a_{2},a_{3},a_{4},a_{5} and a6a_{6} ( 1<=ai<=10001<=a_{i}<=1000 ) — the lengths of the sides of the hexagons in centimeters in the clockwise order. It is guaranteed that the hexagon with the indicated properties and the exactly such sides exists.

输出格式

Print a single integer — the number of triangles with the sides of one 1 centimeter, into which the hexagon is split.

输入输出样例

  • 输入#1

    1 1 1 1 1 1
    

    输出#1

    6
    
  • 输入#2

    1 2 1 2 1 2
    

    输出#2

    13
    

说明/提示

This is what Gerald's hexagon looks like in the first sample:

And that's what it looks like in the second sample:

首页