This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits//stdc++.h>
using namespace std;
#pragma GCC optimize("Ofast,unroll-loops")
#pragma GCC target("avx2,fma,bmi,bmi2,abm,lzcnt,popcnt")
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n, q;
cin >> n >> q;
int a[n], b[n];
for(int i = 0; i < n; i++) cin >> a[i] >> b[i];
int t1, t2, t3, an;
while (q--) {
cin >> t1 >> t2 >> t3;
an = 0;
for(int i = 0; i < n; i++) {
if (a[i] >= t1 && b[i] >= t2 && (a[i]+b[i]) >= t3) an++;
}
cout << an << "\n";
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |