Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
33492 | 611434WZC | [CSP-J2021]分糖果 | C++ | 运行出错 | 0 | 0 MS | 232 KB | 262 | 2021-12-06 14:02:32 |
#include <bits/stdc++.h> using namespace std; int main() { freopen("candy.in", "r", stdin); freopen("candy.out", "w", stdout); int n, L, R; cin >> n >> L >> R; if(R <= n * 2) cout << R % n << endl; else cout << n - 1 << endl; return 0; }