| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 145679 | 伊建润 | 08判断区间 | C++ | Accepted | 0 MS | 272 KB | 234 | 2026-01-25 18:00:43 |
#include <iostream> int main() { int a, x, y; std::cin >> a >> x >> y; if (x <= a && a <= y) { std::cout << "yes" << std::endl; } else { std::cout << "no" << std::endl; } return 0; }