Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
77929 sh25_wangtaojie 天问一号 C++ 通过 0 MS 244 KB 346 2025-12-26 15:02:48

Tests(1/1):


#include <iostream> using namespace std; int main() { int speed; cin >> speed; if (speed < 700) { cout << 1; } else if (speed < 100) { cout << 2; } else if (speed < 10) { cout << 3; } else if (speed == 0) { cout << 4; } else { cout << 0; } return 0; }


测评信息: