본문 바로가기
프로그래밍언어/Code_Practice

[SW Expert Academy] View

by 스꼬맹이브로 2023. 6. 28.
728x90
반응형
SMALL

*문제의 저작권은 SW Expert에 있습니다.

출처 : https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=3&contestProbId=AV134DPqAA8CFAYh&categoryId=AV134DPqAA8CFAYh&categoryType=CODE&problemTitle=&orderBy=FIRST_REG_DATETIME&selectCodeLang=ALL&select-1=3&pageSize=10&pageIndex=1

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

[문제] 좌우 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