반응형

백준 20254번 Site Score 풀이 코드

C | C++ | Java | Python

영어(English)


문제 해설

정해진 점수 계산 방법으로 입력값을 계산하면 됩니다. 계산법은 56*Ur + 24*Tr + 14*Uo + 6*To 입니다.

풀이

입력값이 Ur, Tr, Uo, To 순서대로 들어오므로 그대로 계산하여 출력합니다.

코드

#include <stdio.h>

int main(void) {
    int Ur, Tr, Uo, To;
    scanf("%d %d %d %d", &Ur, &Tr, &Uo, &To);
    printf("%d", 56*Ur + 24*Tr + 14*Uo + 6 *To);
    return 0;
}
#include <iostream>
using namespace std;

int main(void) {
    int Ur, Tr, Uo, To;
    cin>>Ur>>Tr>>Uo>>To;
    cout<<56*Ur + 24*Tr + 14*Uo + 6 *To;
    return 0;
}
import java.util.Scanner;

public class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int Ur = sc.nextInt();
        int Tr = sc.nextInt();
        int Uo = sc.nextInt();
        int To = sc.nextInt();
        System.out.print(56*Ur + 24*Tr + 14*Uo + 6 *To);
    }
}
Ur, Tr, Uo, To = map(int, input().split())
print(56*Ur + 24*Tr + 14*Uo + 6*To)

문제 출처

https://www.acmicpc.net/problem/20254

반응형

+ Recent posts