Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
33559 | wsad | [CSP-J2021]分糖果 | C++ | 通过 | 100 | 0 MS | 252 KB | 293 | 2021-12-06 21:13:50 |
#include<bits/stdc++.h> using namespace std; int main(){ // freopen("candy.in","r",stdin); // freopen("candy.out","w",stdout); int n,l,r,x,y; cin>>n>>l>>r; x=n; y=l/n; x=n*y; x+=n-1; while(1) { if(x>r) --x; else break; } cout<<x%n; return 0; }//candy