| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 41682 | Songgr | 属相 | C++ | Accepted | 1 MS | 244 KB | 234 | 2024-02-23 09:10:32 |
#include<bits/stdc++.h> using namespace std; int main() { int m,d; cin>>m>>d; if(m>1){ cout<<"Mouse"; } else if(d>25){ cout<<"Mouse"; } else if(d<=25){ cout<<"Pig"; } return 0; }