코딩테스트/프로그래머스

[프로그래머스/PYTHON] 2023 KAKAO BLIND RECRUITMENT 개인정보 수집 유효기간

jinsang-2 2024. 5. 27. 09:39

https://school.programmers.co.kr/learn/courses/30/lessons/150370

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

def solution(today, terms, privacies):
    y,m,d = map(int,today.split('.'))
    today = y*12*28+m*28+d # 오늘 날짜 day로 표현

    terms = {i[:1] : int(i[2:])*28 for i in terms} # terms day로 dic형태로 변환

    answer=[]
    for index,p in enumerate(privacies):
        y,m,d=p.split('.')
        d,c = d.split()

        p=int(y)*12*28+int(m)*28+int(d)

        if today >= p+terms[c] :
            answer.append(index+1)
    
    return answer