记录编号 |
48330 |
评测结果 |
AAAAAAAAAA |
题目名称 |
漂亮字串 |
最终得分 |
100 |
用户昵称 |
fflyt |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.035 s |
提交时间 |
2012-11-05 15:48:26 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
inline long long mnr(long long a,long long b){return a>b?b:a;}
long long no,nx,mo,mx;
int main()
{
freopen("bs.in","r",stdin);
freopen("bs.out","w",stdout);
while(scanf("%d %d %d %d\n",&no,&nx,&mo,&mx)!=EOF){
if(no==0 || mo==0) {cout<<mnr(nx,mx)<<endl;continue;}
if(nx==0 || mx==0) {cout<<mnr(no,mo)<<endl;continue;}
if(no==nx) cout<<no+nx<<endl;
else if(no<nx) cout<<mnr(mx*(no+1),nx)+no<<endl;
else cout<<mnr(mo*(nx+1),no)+nx<<endl;
}
return 0;
}