답안 #787344

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
787344 2023-07-19T05:56:44 Z 이동현(#10034) 함박 스테이크 (JOI20_hamburg) C++17
2 / 100
78 ms 18952 KB
#include <bits/stdc++.h>
#pragma GCC optimize("O3")
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
using namespace std;

signed main(){
    ios_base::sync_with_stdio(false);
    cin.tie(0);

    int n, k;
    cin >> n >> k;
    vector<vector<int>> a(n, vector<int>(4));
    for(int i = 0; i < n; ++i){
        cin >> a[i][0] >> a[i][1] >> a[i][2] >> a[i][3];
    }

    int x = -1, y = -1;
    for(int i = 0; i < n; ++i){
        x = max(x, a[i][0]);
        y = max(y, a[i][1]);
    }

    cout << x << ' ' << y << '\n';

    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 468 KB Output is correct
2 Correct 1 ms 468 KB Output is correct
3 Correct 2 ms 460 KB Output is correct
4 Correct 1 ms 504 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 400 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 468 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 340 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 468 KB Output is correct
2 Correct 1 ms 468 KB Output is correct
3 Correct 2 ms 460 KB Output is correct
4 Correct 1 ms 504 KB Output is correct
5 Correct 78 ms 18948 KB Output is correct
6 Correct 70 ms 18952 KB Output is correct
7 Correct 73 ms 18952 KB Output is correct
8 Correct 72 ms 18952 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 400 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 468 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 340 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -