Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
130177 李铭洋 02买铅笔 C++ Accepted 1 MS 272 KB 172 2025-09-07 20:13:28

Tests(10/10):


Code:

#include<iostream> #include<cstdio> using namespace std; int main() { int a,b,c,d,e,f,g; cin>>a>>b>>c>>d; e=a*10+b; f=c*10+d; g=f/e; cout<<g; return 0; }