답안 #258751

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
258751 2020-08-06T13:46:17 Z Saboon 함박 스테이크 (JOI20_hamburg) C++14
2 / 100
1090 ms 41108 KB
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

const int maxn = 2e5 + 10;
const int inf = 1e9 + 1;

multiset<int> Ls, Ds, Rs, Us;
int L[maxn], R[maxn], D[maxn], U[maxn];

int main(){
	ios_base::sync_with_stdio(false);
	int n, k;
	cin >> n >> k;
	for (int i = 1; i <= n; i++){
		cin >> L[i] >> D[i] >> R[i] >> U[i];
		Ls.insert(L[i]), Ds.insert(D[i]), Rs.insert(R[i]), Us.insert(U[i]);
	}
	if (k == 1){
		cout << *Rs.begin() << " " << *Us.begin() << '\n';
	}
}
# 결과 실행 시간 메모리 Grader output
1 Correct 3 ms 768 KB Output is correct
2 Correct 3 ms 768 KB Output is correct
3 Correct 3 ms 768 KB Output is correct
4 Correct 5 ms 768 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 768 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 768 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 768 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 3 ms 768 KB Output is correct
2 Correct 3 ms 768 KB Output is correct
3 Correct 3 ms 768 KB Output is correct
4 Correct 5 ms 768 KB Output is correct
5 Correct 1033 ms 41108 KB Output is correct
6 Correct 1078 ms 41080 KB Output is correct
7 Correct 1006 ms 40956 KB Output is correct
8 Correct 1090 ms 40992 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 768 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 768 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 768 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -