Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
109598 | 邹金行 | 02买铅笔 | C++ | Wrong Answer | 1 MS | 268 KB | 140 | 2025-02-09 15:57:05 |
#include <iostream> using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c>>d; cout<<(c*10+d/10)/(a*10+b/10); return 0; }
------Input------
1 72 84 82
------Answer-----
11
------Your output-----
49