본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬]14625번 냉동식품

by 현장 2021. 11. 16.

h1, m1 = map(int, input().split())
h2, m2 = map(int, input().split())
N = int(input())
cnt = 0
while 1:
    if N in [h1 // 10, h1 % 10, m1 // 10, m1 % 10]:
        cnt += 1
    if h1 == h2 and m1 == m2:
        break
    m1 += 1
    if m1 == 60:
        h1 += 1
        m1 = 0
print(cnt)

처음에는 str을 이용하여 안에 있는 N을 판별하려 했으나 값이 나오지 않아서 다른 방법을 찾아서 해결을 하였습니다.