Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
76603 黄睿杰 14能吸多少根烟 C++ Accepted 1 MS 272 KB 192 2024-06-02 15:29:06

Tests(10/10):


Code:

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