일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 프로그래머스 코딩테스트 연습
- 디자인 패턴
- Python
- 바이오데이터 엔지니어
- 클린 코드
- Spring Boot
- 스프링 부트와 AWS로 혼자 구현하는 웹 서비스
- pycharm
- terraform
- 파이썬
- 스코페2021
- Firefox
- github actions
- c#
- heroku
- FastAPI
- selenium
- PostgreSQL
- 프로그래머스 월간 코드 챌린지
- git
- WPF
- Word Cloud
- 프로그래머스 월간 코드 챌린지 시즌1
- 프로그래머스 코딩 테스트 연습
- 프로그래머스 코딩테스트 연습문제
- Codeforces
- PostgreSQL 설치 시 에러
- 브랜디
- 애드센스
- github
Archives
- Today
- Total
프로그래밍 연습하기
Nezzar and Colorful Balls 본문
반응형
Codeforces Round #698 (Div. 2)
A. Nezzar and Colorful Balls
https://codeforces.com/contest/1478/problem/A
문제 전문은 위 링크에서 확인하실 수 있습니다.
# https://codeforces.com/contest/1478/problem/A
ans = []
n = int(input())
for _ in range(n):
length = int(input())
arr = [int(i) for i in input().split()]
maxv = 0
for i in range(1,length+1):
if maxv <= arr.count(i):
maxv = arr.count(i)
ans.append(maxv)
for i in ans:
print(i)
가장 많이 중복되는 수의 개수만큼 색이 필요합니다.
1부터 n까지 돌면서 가장 많이 중복된 수를 찾아서 배열에 담은 후 한번에 출력하였습니다.
반응형
'Codeforces' 카테고리의 다른 글
Space Navigation (0) | 2021.02.06 |
---|---|
Suborrays (0) | 2021.02.04 |
Hotelier (0) | 2021.02.03 |
Wrong Subtraction (0) | 2021.02.03 |
Nezzar and Lucky Number (0) | 2021.01.31 |
Comments