| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 83847 | sh25_zhoumy | 属相 | C++ | Accepted | 0 MS | 240 KB | 167 | 2026-02-03 11:13:39 |
#include<bits/stdc++.h> using namespace std; int main() { int y,n; cin>>y>>n; if(y==1&&n<=24) cout<<"Pig"; else cout<<"Mouse"; return 0; }