| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 146880 | 赵奕杰 | 02买铅笔 | C++ | Wrong Answer | 0 MS | 272 KB | 160 | 2026-02-01 10:50:30 |
#include <bits/stdc++.h> using namespace std; int a,b,c,d; int main(){ cin>>a>>b>>c>>d; cout<<fixed<<setprecision(0)<<(c+d*0.1)/(a+b*0.1); return 0; }
------Input------
24 12 88 38
------Answer-----
3
------Your output-----
4