| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144156 | 杨润东 | 02买铅笔 | C++ | Wrong Answer | 0 MS | 276 KB | 176 | 2026-01-19 20:18:26 |
#include<iostream> using namespace std; int main(){ int a,c; double b,d; cin>>a>>b>>c>>d; b=b*0.1; d=d*0.1; cout<<(c*d)/(a*b); return 0; }
------Input------
24 12 88 38
------Answer-----
3
------Your output-----
11.6111