| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 72819 | sh25_ganzy | 神奇装置 | C++ | Accepted | 0 MS | 240 KB | 349 | 2025-11-02 20:07:07 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c>>d; if(a<b&&b<c&&c<d){ cout<<"Fish Rising"; }else if(a>b&&b>c&&c>d){ cout<<"Fish Diving"; }else if(a==b&&b==c&&c==d){ cout<<"Fish At Constant Depth"; }else{ cout<<"No Fish"; } return 0; }