| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 89059 | sh25_zhangyj | 属相 | C++ | 通过 | 0 MS | 248 KB | 315 | 2026-05-22 15:06:18 |
#include <iostream> using namespace std; int main() { int month, day; cin >> month >> day; // 判断逻辑:1月24日及之前是猪,其他都是鼠 if (month == 1 && day <= 24) { cout << "Pig" << endl; } else { cout << "Mouse" << endl; } return 0; }