| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 83605 | sh25_huangse | 属相 | C++ | Accepted | 0 MS | 240 KB | 165 | 2026-01-28 20:15:43 |
#include<bits/stdc++.h> using namespace std; int main(){ int m,d; cin>>m>>d; if(m==1&&d<=24) cout<<"Pig"; else cout<<"Mouse"; return 0; }