hxr1234 @ 2024-06-07 23:06:48
这道题感觉有点错误 我也是90分
by ifffer_2137 @ 2024-06-08 06:42:34
@hxr1234 有 86.44k 通过,想什么呢?
by Fish_Love_Water @ 2024-06-08 08:13:21
@hxr1234 怎样都应该把代码发出来吧,而不是发个帖子说题感觉有点问题吧
by xxgirlxx @ 2024-06-08 08:16:21
@hxr1234 这种题出错概率很小,应该是你的问题,可以把代码发出来让大家帮你调试
by Rieman_sum @ 2024-06-08 08:53:09
@hxr1234 懂了,不会做的题就是题出错了
by SassDuck @ 2024-06-08 09:08:08
可能是你的n和k都没有-1
by Bao0714 @ 2024-07-12 21:31:40
AC
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b=0,c,ans=0;
cin>>a>>c;
while(a>0)
{
ans++;
a--;
b++;
if(b>=c)
{
b-=c;
a++;
}
}
cout<<ans;
return 0;
}
@hxr1234
by hua1221 @ 2024-07-13 11:04:59
@hxr1234 循环条件是不是>=(while的话) 不是建议改改试试
by caizimo @ 2024-07-23 10:55:09
#include<bits/stdc++.h>
using namespace std;
#define endl '\n'
typedef long long ll;
const int N=2e5+10;
signed main(){
ios::sync_with_stdio(false);
cin.tie(0);cout.tie(0);
int n,k; cin>>n>>k;
for(int i=1;i<=n;i++){
if(i%k==0) n++;
}
cout<<n;
return 0;
}
by caizimo @ 2024-07-23 10:55:21
AC
by hxr1234 @ 2024-09-04 22:19:34
@hua1221 谢谢,很抱歉这么晚才回复你