15366 : Olivander

풀이

정.렬.조.아

코드

#include <cstdio>
#include <algorithm>
using namespace std;
int n, a[100], b[100];
int main() {
	scanf("%d", &n);
	for (int i = 0; i < n; i++) scanf("%d", &a[i]);
	for (int i = 0; i < n; i++) scanf("%d", &b[i]);
	sort(a, a + n); sort(b, b + n);
	while (n--) if (a[n] > b[n]) return !printf("NE");
	return !printf("DA");
}

아무말

백준, 백준 온라인 저지, BOJ, Baekjoon Online Judge, C, C++, 씨, 씨쁠쁠, JAVA, algorithm, 자바, 알고리즘, 자료구조, 문제, 문제 풀이, 풀이

wookje.kwon's profile image

wookje.kwon

2018-09-17 12:23

Read more posts by this author