- 【例42.1】 雇佣兵
疯了
- 2024-1-5 17:58:03 @
#include<bits/stdc++.h>
using namespace std;
int main(){
int m,n,x,f=0;
cin>>m>>n>>x;
x=x-m;
for(int i=0;x<m;i++){
if(f==m){
for(int j=1;j<=m;j++){
if(i%n==0){
n++;
}
}
}
}
cout<<n;
return 0;
}
70分求助
1 条评论
-
@ 2024-1-16 19:24:47
0 Fetched...
#include <iostream> using namespace std; int main(){ int M,N,X,S=0; cin>>M>>N>>X; while (X){ X--; S=S+N; if (S>=M){ S=M; while (S){ if(S%N==0) N++; S--; } } } cout<<N<<endl; }
- 1
信息
- ID
- 172
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 7
- 标签
- 递交数
- 24
- 已通过
- 9
- 上传者