比赛 NOIP2007普及组(复现) 评测结果 AWAWWWWWWW
题目名称 守望者的逃离 最终得分 20
用户昵称 wrp12138 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2020-02-09 18:59:54
显示代码纯文本
#include<stdio.h>
int main()
{
	freopen("escape.in","r",stdin);
	freopen("escape.out","w",stdout);
	int m,s,t,th,c,moret,mores;
	float totalt,run,mg;
	scanf("%d %d %d",&m,&s,&t);
	th=m/10;
	c=60*th;
	if(c>=s&&th<=t)
	{
		th=s/60;
		if(s%60!=0)
		th=th+1;
		printf("Yes\n%d",th);
	}
	else if(c>=s&&th>t)
	{
		c=t*60;
		if(c>=s)
		{
			th=s/60;
			if(s%60!=0)
			th=th+1;
			printf("Yes\n%d",th);
		}
		else if(c<s)
		{
			c=t*60;
			printf("No\n%d",c);
		}
	}
	else if(c<s&&th>=t)
	{
		c=t*60;
		printf("No\n%d",c);
	}
	else if(c<s&&th<t)
	{
		m=m%10;
		moret=t-th;
		mores=s-c;
		if(mores/120>moret/7)
		{
			c=(moret/7*120)+(moret%7*17);
			
			printf("No\n%d",c);
		}
	}
}