#include <bits/stdc++.h> using namespace std; int main() { int a, b, c, d = 0, n = 0; cin >> a; for (int i = 0; i < a; i++) { cin >> b >> c; if ((b >= 90) && (b <= 140) && (c >= 60) && (c <= 90)) { d++; if (d > n) { n = d; } } else c = 0; } cout << n << endl; return 0; }
共 1 条回复