Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
150270 王润中 14能吸多少根烟 C++ Wrong Answer 1 MS 268 KB 118 2026-03-24 20:43:27

Tests(0/10):


Code:

#include<iostream> using namespace std; int main() { int n,k,c; cin>>n>>k; c=n/k; cout<<n+c; }


Run Info:

------Input------
159 16
------Answer-----
169
------Your output-----
168