8 条题解
信息
- ID
- 963
- 时间
- 1000ms
- 内存
- 64MiB
- 难度
- 7
- 标签
- 递交数
- 148
- 已通过
- 39
- 上传者
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,x,y,sum=0; cin>>a>>b>>c; for(x=0;x<=c/a;x++){ y=(c-ax)/b; if(ax+b*y==c)sum++; } cout<<sum<<endl; return 0; } 百分百过
塞北的雪