首页 > 代码库 > Codeforces 450 C. Jzzhu and Chocolate
Codeforces 450 C. Jzzhu and Chocolate
//area=(n*m)/ ((x+1)*(k-x+1)) //1: x==0; //2: x=n-1 //3: x=m-1 # include <stdio.h> long long max(long long x,long long y) { return x>y?x:y; } int main() { long long n,m,k,sum,t,ans; scanf("%lld%lld%lld",&n,&m,&k); sum=n+m-2; if(k>sum) printf("-1\n"); else if(sum==k) printf("1\n"); else { ans=0; if(n>=k+1)//x=0 { ans=max(ans,m*(n/(k+1))); } else//x=n-1 { t=k-n+2; ans=max(ans,m/t); } if(m>=k+1)//x=0 { ans=max(ans,n*(m/(k+1))); } else//x=m-1 { t=k-m+2; ans=max(ans,n/t); } printf("%lld\n",ans); } return 0; }
Codeforces 450 C. Jzzhu and Chocolate
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。