| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 83987 | sh25_guwz | 地球人口承载力估计 | C++ | Accepted | 0 MS | 248 KB | 188 | 2026-02-05 10:04:30 |
#include<bits/stdc++.h> using namespace std; int main() { float x,a,y,b; cin>>x>>a>>y>>b; float m=b*y-a*x,n=b-a; float v1=m/n; cout<<fixed<<setprecision(2)<<v1; return 0; }