| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 125132 | 就这? | 分段函数 | C++ | Compile Error | 0 | 0 MS | 0 KB | 188 | 2024-01-23 16:27:32 |
#include<bits/stdc++.h> using namespace std; int main() { int x; cin>>x; if(x<1) { cout<<x; } if(x>=1&&x<10) { cout<<2x-1; } if(x>=10) { cout<<3x-11; } }