Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
38192 yuanhaoxiang 不定方程求解 C++ 通过 0 MS 248 KB 183 2024-01-25 16:04:20

Tests(1/1):


#include<iostream> using namespace std; int main(){ int a,b,c,x,y,s=0; cin>>a>>b>>c; for(x=0;x<=c/a;x++){ y=(c-a*x)/b; if(a*x+b*y==c)s++; } cout<<s; return 0; }


测评信息: