| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 150967 | 鸡哥 | 02买铅笔 | C++ | Wrong Answer | 1 MS | 272 KB | 137 | 2026-04-02 14:59:53 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,e,f; cin>>a>>b; e=a*10+b; f=c*10+d; cout<<f/e; }
------Input------
24 12 88 38
------Answer-----
3
------Your output-----
0