| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 130401 | 鄢晨曦 | 02买铅笔 | C++ | Wrong Answer | 2 MS | 268 KB | 127 | 2025-09-13 14:15:58 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; cout<<a/b<<endl; return 0; }
------Input------
24 12 88 38
------Answer-----
3
------Your output-----
2