| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 125354 | 韩立鹏 | 分段函数 | C++ | Wrong Answer | 66 | 0 MS | 244 KB | 191 | 2024-01-23 16:48:00 |
#include <iostream> #include <cstdio> using namespace std; int main() { int x; cin>>x; if (1<=x&&x<10) { cout<<2*x-1; }else if(x>=10) { cout<<3*x-11; } return 0; }