Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
330758 小林老师 【C2-T】打电话计费 C++ 通过 100 2 MS 256 KB 198 2025-07-10 22:12:18

Tests(3/3):


#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+ceil((x-0.5)/0.2); } return 0; }


测评信息: