| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 125390 | 黄梓涵 | 分段函数 | C++ | Wrong Answer | 66 | 0 MS | 236 KB | 193 | 2024-01-23 16:52:21 |
#include<iostream> #include<cstdio> using namespace std; int main() { int a; cin>>a; if((1<=a)&&(a<10)){ cout<<2*a-1; }if(a>=10){ cout<<3*a-11; } return 0; }