Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
66139 陈家宝 [CSP-J2021]分糖果 C++ 通过 100 0 MS 244 KB 209 2022-11-26 11:00:46

Tests(10/10):


#include<bits/stdc++.h> using namespace std; int main() { long long n,l,r,s; scanf("%ld%ld%ld",&n,&l,&r); s=l%n; if(s+(r-l)>=n-1){ cout<<n-1; } else{ cout<<max(l%n,r%n); } return 0; }


测评信息: