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

[백준/파이썬] 32432번 Attention to the Meeting

by 현장 2024. 10. 1.

-Code

n = int(input())
time = int(input())
total = (time // n) * n + n - 1

print(time // n if total <= time else time // n - 1)