백준 15727번: 조별과제를 하려는데 조장이 사라졌다 #Python

ColorlessDia·2024년 2월 12일

algorithm/baekjoon

목록 보기
66/836
L = int(input())

t = 0

if L % 5 == 0:
    t = L // 5
else:
    t = (L // 5) + 1

print(t)

0개의 댓글