첫째 줄에 정수 N이 주어지는데 하루 동안 숫자 N을 볼수있는 시간은 몇초인지 출력하고 싶다.

예를 들어 N = 3일 때는 00:00:00부터 23:59:59까지 3이라는 숫자가 포함된 시간이 총 43875초라서 43875를 출력하면 된다. 

N = int(input())

count = 0

for hour in range(24):
  for minute in range(60):
    for second in range(60):
      time_str = f"{hour:02}{minute:02}{second:02}"
      if str(N) in time_str:
        count += 1

print(count)

'알고리즘' 카테고리의 다른 글

IP주소 판별하기  (0) 2025.04.01
기둥 세우기  (0) 2025.03.30
백준 파이썬 - 9506  (1) 2024.02.02
백준 파이썬 - 2869  (0) 2024.02.02
백준 파이썬 - 2292  (0) 2024.01.30

+ Recent posts