Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
93013 | 李浩源 | 属相 | C++ | Wrong Answer | 1 MS | 272 KB | 163 | 2024-10-07 15:34:32 |
#include<bits/stdc++.h> using namespace std; int main(){ int c,d; cin>>c>>d; if(c==1 && d>24){ cout<<"Pig"; }else{ cout<<"Mouse"; } }
------Input------
1 16
------Answer-----
Pig
------Your output-----
Mouse