Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
33043 teacher_lu 铺地毯 C++ 通过 0 MS 248 KB 384 2023-12-04 22:58:39

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main() { int n; cin >> n; int a[n+1], b[n+1], g[n+1], k[n+1]; for(int i = 1; i <= n; i++) { cin >> a[i] >> b[i] >> g[i] >> k[i]; } int x, y; cin >> x >> y; for(int i = n; i >= 1; i--) { if(x>=a[i] && x<=a[i]+g[i] && y>=b[i] && y<=b[i]+k[i]) { cout << i; return 0; } } cout << -1; return 0; }


测评信息: