SWEA 6019 기차 사이의 파리

1 개요[ | ]

SWEA 6019 기차 사이의 파리
SW Expert 아카데미
# 문제 풀이

틀:SWEA 난이도 3-1

2 C++[ | ]

3 Java[ | ]

import java.util.*;
class Solution {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int T;
        T=sc.nextInt();
         
        int A, B, F;
        double D, time, distance;
        for(int test_case = 1; test_case <= T; test_case++) {
            D = (double) sc.nextInt();
            A = sc.nextInt();
            B = sc.nextInt();
            F = sc.nextInt();
            time = D / (A+B);
            distance = time * F;
            System.out.format("#%d %f\n", test_case, distance);
        }
        sc.close();
    }
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}