알고리즘

[알고리즘] 백준 14924 - 폰 노이만과 파리 (C++)

blueberrysoda 2024. 9. 15. 23:38

[문제 링크] : https://www.acmicpc.net/problem/14924

#include <iostream>
using namespace std;

int main(){
    int S, T, D;
    cin >> S >> T >> D;
    cout << D / S / 2 * T << "\n";
    return 0;
}