摘要: A - Approximation 点击查看代码 void solve() { int a, b; std::cin >> a >> b; int res = a / b; if (a % b > b - a % b) { ++ res; } std::cout << res << "\n"; } 阅读全文
posted @ 2025-05-24 21:53 maburb 阅读(229) 评论(0) 推荐(0)