Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
22593 | 老方 | 地球人口承载力估计 | C++ | Wrong Answer | 0 MS | 236 KB | 186 | 2023-07-11 17:19:52 |
#include <iostream> using namespace std; int main() { int x; int a; int y; int b; cin >> x; cin >> a; cin >> y; cin >> b; cout << (y*b-x*a)/(b-a); return 0; }