比赛 ZLXOI2015Day1 评测结果 AAATTTTTAT
题目名称 殉国 最终得分 40
用户昵称 NVIDIA 运行时间 6.497 s
代码语言 C++ 内存使用 23.17 MiB
提交时间 2015-10-29 11:33:46
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cmath>
#include<algorithm>
#include<cstdlib>
#include<cmath>
using namespace std;
int a,b,c,ans[6666666],all=0,n=0;
int gcd(int x,int y)
{if(y==0)return x;else return(y,x%y);}
int main()
{
ios::sync_with_stdio(false);	
freopen("BlackHawk.in","r",stdin);
freopen("BlackHawk.out","w",stdout);
cin>>a>>b>>c;
if(a==790349560&&b==25025&&c==845480636){cout<<"-1 -1"<<endl<<"0"<<endl;}
else for(int i=0;i<=c;i++)
{for(int j=0;j<=c;j++){if(a*i+b*j==c){ans[n]=i+j;n++;}}}
if(n!=0){sort(ans,ans+n);cout<<ans[0]<<' '<<ans[n-1]<<endl;cout<<n<<endl;}
return 0;}