| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 47223 | C++|付浩泽 | 【例39.1】 鼓掌次数 | C++ | Compile Error | 0 MS | 0 KB | 161 | 2024-05-12 19:05:14 |
#include<iostream> using namespace std; int main(){ long long n,k; cin>>k>>n,c=0; for(int i=1;i<=n;i++){ if(i%k==0) c++; } cout<<c; return 0; }