Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
54286 zhangsicun 不定方程求解 C++ 通过 0 MS 244 KB 291 2024-10-27 08:26:02

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main(){ int a, b, c, ans = 0; cin >> a >> b >> c; for(int x = 0; x <= c; x++){ for(int y = 0; y <= c; y++){ if(a * x + b * y == c){ ans++; } } } cout << ans; return 0; }


测评信息: