码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2018-09-14 16:14:12      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:comment   ons   namespace   ret   type   cout   typedef   cstring   cto   

题意:面积是sqrt(3)/4的多少倍?

做延长线

#pragma comment(linker,"/STACK:1024000000,1024000000") 
#include<iostream>
#include<cstdio>
#include<string>
#include<cstring>
#include<vector>
#include<cmath>
#include<queue>
#include<stack>
#include<map>
#include<set>
#include<algorithm>
#include <stack>
using namespace std;
const int SZ=1e7+10,INF=0x7FFFFFFF;
typedef long long lon;

int main()
{
    std::ios::sync_with_stdio(0);
    int a,b,c,d,e,f;
    cin>>a>>b>>c>>d>>e>>f;
    cout<<((a+f)*(a+b)+(c+d)*(d+e)-a*a-d*d)<<endl;
    return 0;
}

 

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

标签:comment   ons   namespace   ret   type   cout   typedef   cstring   cto   

原文地址:https://www.cnblogs.com/gaudar/p/9646437.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!