/ 21班 /

记录详情

Runtime Error


  
正在同步测试数据,请稍后
[Hydro](https://hydro.ac)提供评测服务
# 状态 耗时 内存占用
#1 Runtime Error Floating point exception 4ms 412.0 KiB
#2 Runtime Error Floating point exception 4ms 412.0 KiB
#3 Runtime Error Floating point exception 4ms 412.0 KiB
#4 Runtime Error Floating point exception 5ms 412.0 KiB
#5 Runtime Error Floating point exception 4ms 412.0 KiB
#6 Runtime Error Floating point exception 4ms 412.0 KiB
#7 Runtime Error Floating point exception 4ms 412.0 KiB
#8 Runtime Error Floating point exception 3ms 412.0 KiB
#9 Runtime Error Floating point exception 4ms 412.0 KiB
#10 Runtime Error Floating point exception 4ms 412.0 KiB

代码

#include<bits/stdc++.h>
using namespace std;
int main()
{
	freopen("candy.in","r",stdin);
	freopen("candy.out","w",stdout);
	std::ios::sync_with_stdio(false);
	long long n,l,r;cin>>n>>l>>r;
	if(l-r>n)
	{
		cout<<n-1<<endl;
		return 0;
	}
	if(l==r)
	{
		cout<<l%n<<endl;
		return 0;
	}
	int p=r/n;
	if(p>1)
	{
		cout<<n-1<<endl;
		return 0;
	}
	else
	{
		cout<<r-n<<endl;
		return 0;
	}
	return 0;
}

信息

递交者
类型
递交
题目
P1027 分糖果
题目数据
下载
语言
C++
递交时间
2023-10-03 08:32:21
评测时间
2023-10-03 08:32:21
评测机
分数
0
总耗时
45ms
峰值内存
412.0 KiB