Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
76578 Kevin 14能吸多少根烟 C++ Accepted 0 MS 272 KB 206 2024-06-02 15:23:06

Tests(10/10):


Code:

#include<iostream> #include<cmath> using namespace std; int main(){ int n,k,s=0,m=0; cin>>n>>k; while(1){ s+=n; m+=n; n=m/k; m=m%k; if(n==0) break; } cout<<s; return 0; }