Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
47192 | jiabokai | 【例39.1】 鼓掌次数 | C++ | 无测评数据 | 0 MS | 0 KB | 194 | 2024-05-12 18:16:18 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,k,s=0,m=1; cin>>n>>k; for(int i=1;i<=n;i++){ if(m==k){ s++; m=1; continue; } m++; } cout<<s; }