time limit per test2 seconds

memory limit per test256 megabytes

inputstandard input

outputstandard output

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.

Input

The first and the single line of the input contains 6 space-separated integers a1, a2, a3, a4, a5 and a6 (1 ≤ ai ≤ 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.

Output

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

Examples

input

1 1 1 1 1 1

output

6

input

1 2 1 2 1 2

output

13

Note

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

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

【题目链接】:http://codeforces.com/contest/560/problem/C

【题解】



最后的个数其实可以转换成6边形的面积除边长为1的三角形的面积;



把图补上3个角;

然后用大三角形的面积减去3个小三角形的面积就是六边形的面积了;

大三角形和3个小三角形的都是正三角形;

很好算的;



【完整代码】

#include <bits/stdc++.h>
using namespace std;
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define LL long long
#define rep1(i,a,b) for (int i = a;i <= b;i++)
#define rep2(i,a,b) for (int i = a;i >= b;i--)
#define mp make_pair
#define pb push_back
#define fi first
#define se second
#define rei(x) scanf("%d",&x)
#define rel(x) scanf("%I64d",&x) typedef pair<int,int> pii;
typedef pair<LL,LL> pll; //const int MAXN = x;
const int dx[9] = {0,1,-1,0,0,-1,-1,1,1};
const int dy[9] = {0,0,0,-1,1,-1,1,-1,1};
const double pi = acos(-1.0); LL a[7]; LL sqr(LL x)
{
return x*x;
} int main()
{
//freopen("F:\\rush.txt","r",stdin);
rep1(i,1,6)
cin >> a[i];
cout << sqr(a[1]+a[2]+a[3])-(sqr(a[1])+sqr(a[3])+sqr(a[5]));
return 0;
}

最新文章

  1. Linux kernel make 常用选项介绍
  2. 遍历list、set、map和array
  3. [Vuejs] 关于vue-router里面的subRoutes
  4. &lt;a&gt;标签中的href=&quot;javascript:;&quot;是什么意思?
  5. UVALive 6663 Count the Regions --离散化+DFS染色
  6. SharePoint 列表应用实例 - 显示约束
  7. dual
  8. 搞明白这八个问题,Linux系统就好学多了。
  9. 《转载》CSS中的三种样式来源:创作人员、读者和用户代理
  10. java 面试题汇总(未完成)
  11. 转 :Vim文件编码识别与乱码处理
  12. javaweb浏览器随机输出一张验证码图片
  13. OpenCV问题集锦,图片显示不出来,WaitKey(0),imread()不能读图片,未经处理的异常,等问题集合
  14. MySQL 基础知识梳理学习(一)----系统数据库
  15. 慢慢啃css
  16. Java工具类——UUIDUtils
  17. python全栈开发day15-递归函数、二分查找
  18. 廖雪峰网站:学习python函数—调用函数(一)
  19. GitLab使用自定义端口
  20. 20165203《Java程序设计》第四周学习总结

热门文章

  1. STL中向量vector笔记
  2. IAR for STM8介绍、下载、安装与注册--转
  3. Dell shareplex 与HVR数据复制软件
  4. amazeui学习笔记一(开始使用2)--布局示例layouts
  5. 关于Promise的详细总结
  6. Session丢失原因与解决方案
  7. iOS_04_数据类型、常量、变量
  8. 编程——C语言的问题,比特率
  9. 毕业两年做到测试经理的经历总结- 各个端的自动化,性能测试结合项目具体场景实战,分析客户反馈的Bug
  10. 洛谷—— P1765 手机_NOI导刊2010普及(10)