미적분학

Algorithm/PS

[BOJ/백준] 9299 - Math Tutoring [python]

문제 링크 9299번: Math Tutoring For each case, output the line “Case x:” where x is the case number, on a single line. The output polynomial is to be formatted in the same manner as the input: the first value being the highest polynomial, and the successive values being the coefficie www.acmicpc.net 문제 풀이 이 문제는 도함수를 구하는 문제이다. 한 줄씩 입력값이 주어질 때, 그 값들에 차수를 곱해주면 된다. 정답 코드 for i in range(1, int(input()) + ..