짱해커가 되어보자

boj 2979 본문

프로그래밍_일반/백준

boj 2979

Spadework 2020. 2. 26. 08:53

* Solved 기준 브론즈2 단순 풀이

a,b,c = map(int, input().split())
l,s = [0]*101, 0
for _ in range(3):
	x,y = map(int, input().split())
	for i in range(x,y): l[i]+=1
for i in l:
	s += (a if i==1 else b if i==2 else c if i==3 else 0)*i
print(s)

 

'프로그래밍_일반 > 백준' 카테고리의 다른 글

boj 14697  (0) 2020.02.26
boj 10813  (0) 2020.02.26
boj 7572  (0) 2020.02.26
boj 2526  (0) 2020.02.25
boj 1919  (0) 2020.02.24
Comments