Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
33720 Ender [CSP-J2021]分糖果 C++ 通过 100 0 MS 240 KB 162 2021-12-07 19:09:23

Tests(10/10):


#include <iostream> using namespace std; int main() { int n,L,R; cin>>n>>L>>R; if(R / n - L / n >= 1) cout<<n - 1; else cout<<R % n; return 0; }


测评信息: