| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5298 | C班-王硕 | 游乐设施 | C++ | Wrong Answer | 0 | 1 MS | 260 KB | 203 | 2025-02-01 10:57:19 |
#include <iostream> using namespace std; int main(){ int a,b; cin>>a>>b; if(a >= 60 && b < 60 ||a < 60 && b >= 60){ cout<<"green"<<endl; } else{ cout<<"red"<<endl; } return 0 ; }