반응형

백준 14924번 폰 노이만과 파리 풀이 코드

C | C++ | Java | Python


풀이

(거리/(기차 속도*2)*파리 속도)를 구하면 정답입니다.

코드

#include <stdio.h>
int main(){
    int s, t, d;
    scanf("%d %d %d", &s, &t, &d);
    printf("%d", d/(2*s)*t);
    return 0;
}
#include <iostream>
int main(){
    int s, t, d;
    std::cin>>s>>t>>d;
    std::cout<<d/(2*s)*t;
    return 0;
}
import java.util.Scanner;
public class Main{
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int s = sc.nextInt(), t = sc.nextInt(), d = sc.nextInt();
        System.out.println(d/(2*s)*t);
    }
}
s, t, d = map(int, input().split())
print(d//(2*s)*t)

문제 출처

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

반응형

+ Recent posts