일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 쿠키
- 멀티태스킹
- 리눅스
- SQL Mapper
- 프로그래머스
- 혼공얄코
- 오버로딩
- 자바의정석
- 다형성
- 오블완
- 객체지향
- 공원 산책 자바
- 티스토리챌린지
- 자바의 정석
- 로그인 핸들러 구현
- over()
- spring security 설정
- userdetailsservice 설정
- 개인정보 수집 유효기간 자바
- hackerrank
- authenticationprovider 설정
- CPU
- 바탕화면 정리 자바
- spring security
- java
- 멀티프로세싱
- 입출력
- 캡슐화
- 달리기 경주 자바
- 오버라이딩
- Today
- Total
쉽게 쉽게
[HackerRank] Top Competitors 본문
1. 문제
Julia just finished conducting a coding contest, and she needs your help assembling the leaderboard! Write a query to print the respective hacker_id and name of hackers who achieved full scores for more than one challenge. Order your output in descending order by the total number of challenges in which the hacker earned a full score. If more than one hacker received full scores in same number of challenges, then sort them by ascending hacker_id.
해석
- 제출자 중에서 한 개보다 많은 (2개 이상) 문제에서 full score(만점) 받은 참가자의 hacker_id와, name을 추출
- 정렬
2. 풀이
1. 각 테이블을 조인하여 원하는 정보를 추출
Submissions 테이블과 Challenges 테이블을 조인하여 challenge_id가 일치하는 정보 추출
Difficulty 테이블과 Challenges 테이블을 조인하여 정보 추출
- 이 조인 정보를 토대로 difficulty_level에 해당하는 score를 알 수 있게 됨
Hackers 테이블을 조인하여 이름을 알 수 있도록
select s.hacker_id, h.name from Submissions s
join Challenges c on s.challenge_id = c.challenge_id
join Difficulty d on d.difficulty_level = c.difficulty_level
join Hackers h on s.hacker_id = h.hacker_id
2. 만점자 조건 추가
select s.hacker_id, h.name from Submissions s
join Challenges c on s.challenge_id = c.challenge_id
join Difficulty d on d.difficulty_level = c.difficulty_level
join Hackers h on s.hacker_id = h.hacker_id
where d.score = s.score
3. 한 개 이상의 문제에서 만점을 받은 조건 추가
이전 조건에서 만점을 받은 사람의 id와 이름이 중복돼서 쭉 나오니 group by로 묶어주고
항목이 2개 이상인 사람들만 추출(만점 2개 이상)
select s.hacker_id, h.name from Submissions s
join Challenges c on s.challenge_id = c.challenge_id
join Difficulty d on d.difficulty_level = c.difficulty_level
join Hackers h on s.hacker_id = h.hacker_id
where d.score = s.score
group by s.hacker_id, h.name
having count(s.hacker_id) > 1
4. 정렬
select s.hacker_id, h.name from Submissions s
join Challenges c on s.challenge_id = c.challenge_id
join Difficulty d on d.difficulty_level = c.difficulty_level
join Hackers h on s.hacker_id = h.hacker_id
where d.score = s.score
group by s.hacker_id, h.name
having count(s.hacker_id) > 1
order by count(s.hacker_id) DESC, s.hacker_id;
잘못된 내용이 있다면 지적부탁드립니다. 방문해주셔서 감사합니다. |
'문제풀이 > HakerRank' 카테고리의 다른 글
[HackerRank] The PADS (0) | 2023.07.19 |
---|---|
[HackerRank] Symmetric Pairs (0) | 2023.07.09 |
[HackerRank] Placements (0) | 2023.07.03 |
[HackerRank] Challenges (0) | 2023.07.01 |
[HackerRank] The Report (0) | 2023.06.21 |