이것이 취업을 위한 코딩테스트이다. with 파이썬
p.311
n=int(input())
team=list(map(int, input().split()))
team.sort()
count=0
team_count=0
for i in team:
count+=1
if count>=i:
team_count+=1
count=0
print(team_count)
이것이 취업을 위한 코딩테스트이다. with 파이썬
p.311
n=int(input())
team=list(map(int, input().split()))
team.sort()
count=0
team_count=0
for i in team:
count+=1
if count>=i:
team_count+=1
count=0
print(team_count)
댓글