| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 143256 | 朱丰硕 | 02买铅笔 | C++ | Accepted | 0 MS | 272 KB | 255 | 2026-01-11 19:30:15 |
#include <iostream> using namespace std; int main() { int a, b, c, d; cin >> a >> b >> c >> d; int price = a * 10 + b; int budget = c * 10 + d; int result = budget / price; cout << result << endl; return 0; }