Recent Posts
Notice
No Rules Rules
트럭 주차 (feat. 백준, 2979번) 본문
728x90
반응형
트럭 주차
https://www.acmicpc.net/problem/2979
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int A, B, C, X, Y, arr[101]{0}, ans = 0;
cin >> A >> B >> C;
for(register int i = 0, j; i < 3; ++i){
cin >> X >> Y;
for(j = X; j < Y; ++j)
++arr[j];
}
for(auto& t : arr){
if(t == 1)
ans += t * A;
else if(t == 2)
ans += t * B;
else if(t == 3)
ans += t * C;
}
cout << ans;
return 0;
}
// *&)*@*
반응형
단순 연산 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
성곽 (feat. 백준, 2234번) (0) | 2022.11.03 |
---|---|
국회의원 선거 (feat. 백준, 1417번) (0) | 2022.11.03 |
수들의 합 2 (feat. 백준, 2003번) (0) | 2022.11.02 |
쉽게 푸는 문제 (feat. 백준, 1292번) (0) | 2022.11.02 |
단어 뒤집기 2 (feat. 백준, 17413번) (0) | 2022.11.02 |
Comments