보안을 그리다, 훈이

[Baekjoon/Python3] 14730번 謎紛芥索紀 (Small) 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 14730번 謎紛芥索紀 (Small)

HooNeee 2020. 12. 8. 16:11

[Baekjoon/Python3] 14730번 謎紛芥索紀 (Small)

 

www.acmicpc.net/problem/14730

 

14730번: 謎紛芥索紀 (Small)

성민이는 이번 학기에 미적분학 과목을 수강하고 있다. 다항함수의 미분 단원 과제를 하던 도중 미분을 하기가 귀찮아진 성민이는 미분하려는 함수 f(x)가 주어지면, 미분 된 함수 f’(x)를 자동

www.acmicpc.net

 

n = int(input())
total = 0
for i in range(n):
    c, k = map(int, input().split())
    total += c * k
print(total)
Comments