比赛 假期找点事儿做题吧 评测结果 AAAAAAAAAA
题目名称 守望者的逃离 最终得分 100
用户昵称 TARDIS 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2017-06-09 19:24:24
显示代码纯文本
#include<bits/stdc++.h>
#define COGS
using namespace std;
int M,S,T,t,m,s,s2;
inline void in(){
	#ifdef COGS
	freopen("escape.in","r",stdin);
	freopen("escape.out","w",stdout);
	#endif
	scanf("%d%d%d",&M,&S,&T);
}
inline void deal(){
	while (t<T){
		if (M>=10){
			s+=60;
			M-=10;
		}
		else M+=4;
		s2+=17;
		s2=max(s2,s);
		if (s>=S||s2>=S) break;
		t++;
	}
	if (t<T){
		printf("Yes\n%d",t+1);
	}
	else{
		printf("No\n%d",s2);
	}
}
int Main(){
	in();
	deal();
	return 0;
}
int main(){;}
int xlm=Main();