Submission #1050277

# Submission time Handle Problem Language Result Execution time Memory
1050277 2024-08-09T08:29:03 Z 정민찬(#11048) Hamburg Steak (JOI20_hamburg) C++17
2 / 100
56 ms 11128 KB
#include <bits/stdc++.h>
 
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<ll,ll> pll;

struct Rect{
    int L, R, U, D;
};

int main() {
    ios_base :: sync_with_stdio(false); cin.tie(NULL);
    int N, K;
    cin >> N >> K;
    vector<Rect> a(N);
    for (int i=0; i<N; i++) {
        cin >> a[i].L >> a[i].D >> a[i].R >> a[i].U;
    }
    Rect inter = a[0];
    for (int i=1; i<N; i++) {
        inter.L = max(inter.L, a[i].L);
        inter.R = min(inter.R, a[i].R);
        inter.D = max(inter.D, a[i].D);
        inter.U = min(inter.U, a[i].U);
    }
    cout << inter.L << ' ' << inter.D << '\n';
}
# Verdict Execution time Memory Grader output
1 Correct 1 ms 348 KB Output is correct
2 Correct 1 ms 560 KB Output is correct
3 Correct 1 ms 348 KB Output is correct
4 Correct 1 ms 348 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 348 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 348 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 348 KB Output is correct
2 Correct 1 ms 560 KB Output is correct
3 Correct 1 ms 348 KB Output is correct
4 Correct 1 ms 348 KB Output is correct
5 Correct 46 ms 11092 KB Output is correct
6 Correct 47 ms 11108 KB Output is correct
7 Correct 44 ms 11128 KB Output is correct
8 Correct 56 ms 11096 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 348 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 348 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -