| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 312351 | 丁虞轩 | 【C2-T】打电话计费 | C++ | Wrong Answer | 0 | 1 MS | 256 KB | 211 | 2025-03-13 21:07:01 |
#include<iostream> #include<cmath> using namespace std; int main(){ double x; cin>>x; if(x==0.5){ cout<<3; return 0; } if(x>0.5);{ cout<<3+(x-0.5)/0.2; } return 0; }