백준 17536번: Hour for a Run #Python

ColorlessDia·2025년 3월 24일

algorithm/baekjoon

목록 보기
491/808
from math import ceil

V, N = map(int, input().split())
one_tenth = V * N / 10

print(' '.join([str(ceil(one_tenth * i)) for i in range(1, 9 + 1)]))

0개의 댓글