Codeforces Round #313 (Div. 2) C - Gerald's Hexagon

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces Round #313 (Div. 2) C - Gerald's Hexagon相关的知识,希望对你有一定的参考价值。

技术分享

1 int main() {
2     int a[8];
3      while(scanf("%d",&a[0]) != EOF) {
4         for(int i = 1 ; i < 6 ; i ++)    scanf("%d",&a[i]);
5         printf("%d\\n",(a[0]+a[1]+a[2])*(a[0]+a[1]+a[2])-a[0]*a[0]-a[2]*a[2]-a[4]*a[4]);    
6      }
7 } 

 

以上是关于Codeforces Round #313 (Div. 2) C - Gerald's Hexagon的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #313 (Div. 2) C - Gerald's Hexagon

codeforces 559a//Gerald's Hexagon// Codeforces Round #313(Div. 1)

Codeforces Round #313 (Div. 2) 解题报告

Codeforces Round 313(div1)

Codeforces Round #313 (Div. 2) C

打CF,学算法——一星级Codeforces Round #313 (Div. 2) A. Currency System in Geraldion