반응형

백준 17496번 스타후르츠 풀이 코드

C | C++ | Java | Python


풀이

스타후르츠는 심은 날 +1일에 수확할 수 있으므로 (N-1) / T * C * P 를 계산하여 출력합니다.

코드

#include <stdio.h>

int main () {
    int N, T, C, P;
    scanf("%d %d %d %d", &N, &T, &C, &P);
    printf("%d", (N-1) / T * C * P)
    return 0;
}
#include <iostream>
using namespace std;

int main () {
    int N, T, C, P;
    cin>>N>>T>>C>>P;
    cout<<(N-1) / T * C * P;
    return 0;
}
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int T = sc.nextInt();
        int C = sc.nextInt();
        int P = sc.nextInt();
        System.out.println((N-1) / T * C * P);
    }
}
N, T, C, P = map(int, input().split())
print((N-1) // T * C * P)

문제 출처

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

반응형

+ Recent posts