记录编号 | 594679 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | [CSP 2021J]分糖果 | 最终得分 | 100 | ||
用户昵称 | 不知所云 | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.029 s | ||
提交时间 | 2024-10-03 21:34:36 | 内存使用 | 3.35 MiB | ||
#include<bits/stdc++.h> using namespace std; int main() { freopen("csp2021pj_candy.in","r",stdin);freopen("csp2021pj_candy.out","w",stdout); long long n,L,R; cin>>n>>L>>R; if(L/n==R/n) cout<<R%n; else cout<<n-1; return 0; }