| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 77735 | sh25_shengmy | 晶晶赴约会 | C++ | 通过 | 0 MS | 248 KB | 237 | 2025-12-26 14:44:03 |
#include <iostream> using namespace std; int main() { int day; cin >> day; if (day == 1 || day == 3 || day == 5) { cout << "NO" << endl; } else { cout << "YES" << endl; } return 0; }