본문 바로가기
python-algorithm

[백준] 1813

by 무적김두칠 2021. 1. 6.

1
2
3
4
5
6
7
8
9
10
11
12
import sys
n=int(sys.stdin.readline())
hs=list(map(int,sys.stdin.readline().split()))
tmp=[0]*100001
cnt=0
checker=0
for i  in range(n):
    tmp[hs[i]]+=1
for i in range(len(tmp)):
    if tmp[i]==i: cnt=i; checker=1
if checker==0 : print(-1); exit()
elseprint(cnt)
cs

말장난 같다고 할까요? 구현 능력보다는 명제를 찬찬히 읽어보시고
구현 하는 방식에 대해서 고민하시면 쉽게 풀 수 있습니다.

반응형

'python-algorithm' 카테고리의 다른 글

[백준] 1919  (0) 2021.01.06
[백준] 1871  (0) 2021.01.06
[백준] 1773  (0) 2021.01.06
[백준] 1731  (0) 2021.01.06
[백준] 1681  (0) 2021.01.06

댓글