| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 26093 | WZH | 最大值和最小值的差 | C++ | Wrong Answer | 1 MS | 236 KB | 180 | 2023-08-30 14:08:29 |
#include<iostream> using namespace std; int main() { int q,w,e,r,t,y,u; cin>>y>>q>>w>>e>>r>>t; if(e>w){ u=e-y; cout<<u; } return 0; }