Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
55507 yuboyuan 正常血压 C++ 通过 0 MS 240 KB 362 2024-11-07 20:56:21

Tests(1/1):


#include<iostream> #include<cmath> using namespace std; int main() { int n,a,b,t=0,tmax=0; cin>>n; for(int i=1;i<=n;i++) { cin>>a>>b; if(a>=90&&a<=140&&b>=60&&b<=90) t++; else { tmax=max(tmax,t); t=0; } } tmax=max(tmax,t); cout<<tmax; return 0; }


测评信息: