26082
#include <stdio.h>
int main(void){
int c_price, c_performance, w_price;
// 입력
scanf("%d %d %d", &c_price,&c_performance,&w_price);
// warboy 성능
int w_performance = w_price*(3*(c_performance/c_price));
// 출력
printf("%d", w_performance);
return 0;
}

'백준' 카테고리의 다른 글
| [ 백준 / C ] 2750번 : 수 정렬하기 (0) | 2025.08.20 |
|---|---|
| [ 백준 / C ] 29699번 : Welcome to SMUPC! (0) | 2025.08.19 |
| [ 백준 / C ] 18245번 : 이상한 나라의 암호 성공 (0) | 2025.08.19 |
| [ 백준 / C ] 1864번 : 문어 숫자 (0) | 2025.08.18 |
| [ 백준 / C ] 9653번 : 스타워즈 로고 (0) | 2025.08.15 |