# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
697062 | 2023-02-08T05:11:12 Z | noobnessOVERLOADED | Best Place (NOI17_bestplace) | C++17 | 75 ms | 3208 KB |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; int a[n][2]; int b[n]; int c[n]; for(int i = 0; i <= n-1; i++){ cin >> a[i][0] >> a[i][1]; } for(int j = 0; j <= n-1; j++){ a[j][0] = b[j]; } for(int k = 0; k <= n-1; k++){ a[k][1] = c[k]; } int m = n/2; int z = 2*m; int o = n-z; sort(b, b+n); sort(c, c+n); if(o=1){ int sum1 = b[m+1]; int sum2 = c[m+1]; cout << sum1 << " " << sum2; } else{ int sum1 = (b[m]+b[m+1])/2; int sum2 = (c[m]+c[m+1])/2; cout << sum1 << " " << sum2; } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 340 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 66 ms | 2840 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 75 ms | 3208 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |