Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
33464 | 杯总 | [CSP-J2021]分糖果 | C++ | 解答错误 | 50 | 1 MS | 256 KB | 475 | 2021-12-06 13:54:46 |
#include <bits/stdc++.h> using namespace std; int main() { //freopen("candy.in","r",stdin); //freopen("candy.out","w",stdout); int n,l,r,you,end,i=0; cin>>n>>l>>r; if(l==r) { for(; r>=n;) { r=r-n; } cout<<r<<endl; return 0; } end=r; for(; r>=n; i++) { r=r-n; } i=i-1; you=(end-r)-1; you=you-i*n; if(you>end-n) { you=end-n; } else ; cout<<you<<endl; return 0; }