728x90
반응형
SMALL
*문제의 저작권은 SW Expert에 있습니다.
[문제] 좌우 2칸이상 시야가 확보되는 세대 수 구하는 문제
메모리 : 62,276 kb 실행시간 : 165 ms 코드길이 : 367
for i in range(1, 11):
T = int(input())
building = list(map(int,input().strip().split()))
cnt = 0
for j in range(0, len(building)):
temp = building[j:j+5]
if len(temp)>4:
standard = int(temp[2])
del temp[2]
if standard >= max(temp):
cnt += standard-max(temp)
print(f'#{i} {cnt}')
728x90
반응형
LIST
'프로그래밍언어 > Code_Practice' 카테고리의 다른 글
[SW Expert Academy] 원 안의 점 (0) | 2023.06.29 |
---|---|
[SW Expert Academy] 13229. 일요일 (0) | 2021.12.31 |
파이썬) 겹치지 않는 숫자 랜덤으로 생성 (0) | 2021.11.08 |
이진탐색트리 검사 알고리즘 (0) | 2021.05.21 |
[SW Expert Academy] 파이썬 SW문제해결 구현_2일차 : 최소합 (0) | 2021.02.02 |