| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 142717 | 梁敖铭 | 02买铅笔 | C++ | Wrong Answer | 0 MS | 280 KB | 169 | 2026-01-11 15:13:24 |
#include <bits/stdc++.h> using namespace std; int main(){ int a,b,c,d; long q1,q2; cin>>a>>b>>c>>d; q1=b*10+a; q2=d*10+c; cout<<q2/q1; return 0; }
------Input------
12 86 23 28
------Answer-----
1
------Your output-----
0