3 条题解
信息
- ID
- 489
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 6
- 标签
- (无)
- 递交数
- 50
- 已通过
- 15
- 上传者
#include<bits/stdc++.h>
using namespace std;
int main(){
freopen("candy.in","r",stdin);
freopen("candy.out","w",stdout);
int n,l,r,t;
cin>>n>>l>>r;
t=l%n;
if(t+(r-l)>=n-1){
cout<<n-1;
}
else{
cout<<r%n;
}
return 0;
}
👀️ 👀️ 👀️ !!!