728x90
안녕하십니까. Eun🦆입니다.
풀이법 입니다.
#include<iostream>
#include <algorithm>
using namespace std;
int main(int argc, char** argv)
{
int test_case;
int T;
int n;
cin>>T;
int arr[200];
for(test_case = 1; test_case <= T; ++test_case)
{
scanf("%d", &n);
arr[test_case] = n;
}
sort(arr,arr+200);
printf("%d\n", arr[(test_case+1)/2]);
return 0;
}
네이버 블로그 리뉴얼입니다.
728x90
'개발 > Coding Test' 카테고리의 다른 글
[SW Expert Academy D1] 평균값 구하기 (0) | 2022.06.09 |
---|---|
[SW Expert Academy D1] 홀수만 더하기 (0) | 2022.06.09 |
[LeetCode 7] Reverse Integer (0) | 2022.06.07 |
[LeetCode 1] Two Sum (0) | 2022.06.07 |
[프로그래머스 Lv3 C++] 야근 지수 (0) | 2022.06.07 |
댓글