Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
2274 | 张宸瑜 | 14能吸多少根烟 | C++ | Wrong Answer | 0 MS | 256 KB | 183 | 2023-12-23 16:04:24 |
# include<iostream> # include<cstdio> # include<iomanip> using namespace std; int main(){ int a,b,c; cin>>a>>b; c=(a-(a%b))/b; cout<<a+c; return 0; }
------Input------
133 12
------Answer-----
145
------Your output-----
144