10 Wrong Answer
# |
状态分数 |
耗时 |
内存占用 |
--------------------------------------------------------------- |
|
#1 |
Wrong Answer 0读取到 0,应为 4。 |
3ms |
412 KiB |
- |
#2 |
Wrong Answer 0读取到 0,应为 3。 |
3ms |
412 KiB |
#3 |
Wrong Answer 0读取到 0,应为 2。 |
#4 |
Wrong Answer 0读取到 2,应为 3。 |
#5 |
Wrong Answer 0读取到 1,应为 4。 |
#6 |
Wrong Answer 0读取到 0,应为 6。 |
284 KiB |
#7 |
Accepted10 |
412 KiB |
#8 |
Wrong Answer 0读取到 2,应为 3。 |
284 KiB |
#9 |
Wrong Answer 0读取到 0,应为 2。 |
412 KiB |
#10 |
Wrong Answer 0读取到 2,应为 5。 |
代码
#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
scanf("%d",&n);
int a,b,count=0,index=0;
for(int i=0;i<n;i++){
scanf("%d %d",&a,&b);
if(a>=90&&a<=140&&b>=60&&b<=90){
count++;
if(index<count){
index=count;
}
}
else{
count=0;
}
}
printf("%d",count);
return 0;
}