记录编号 |
75449 |
评测结果 |
AAAAAAAAAAAA |
题目名称 |
电网 |
最终得分 |
100 |
用户昵称 |
cstdio |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.004 s |
提交时间 |
2013-10-27 20:57:02 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<cmath>
using namespace std;
int gcd(int a,int b){
return b==0?a:gcd(b,a%b);
}
int main(){
freopen("fence9.in","r",stdin);
freopen("fence9.out","w",stdout);
int n,m,p;
scanf("%d%d%d",&n,&m,&p);
double S=0.5*(double)p*(double)m;
int onside=0;
int temp;
temp=gcd(m,n);
onside+=temp;
temp=gcd(abs(n-p),m);
onside+=temp;
onside+=p;
cout<<int(S+1-double(onside)/2)<<endl;
return 0;
}