본문 바로가기
Algorithm

[구현/수학] 백준 10180 Ship Selection - 파이썬(Python)

by jangThang 2023. 1. 6.
반응형

백준 온라인 저지

 

[ Contents ]

     

     

    1. 문제 (링크 참조)

     

    10180번: Ship Selection

    Input begins with a line with one integer T (1 ≤ T ≤ 50) denoting the number of test cases. Each test case begins with a line with two space-separated integers N and D, where N (1 ≤ N ≤ 100) denotes the number of ships in the docking bay and D (1

    www.acmicpc.net

     

     

     

    2. 문제 풀이

    (거리 D / 속력 V) * 연료 소비량 c  <=  연료량 f

     약간의 물리 지식을 필요로 하는 문제입니다. 거속시...라고 하죠. 위 식을 만족하는 배의 개수를 찾아야 합니다.

     

     

     

    3. 코드

    T = int(input())
    for _ in range(T):
        N, D = map(int, input().split())
        cnt = 0
        for _ in range(N):
            v, f, c = map(int, input().split())
            if (D/v)*c <= f:
                cnt += 1
        print(cnt)

     

     

    star가 되고나서 Tistory

    반응형

    댓글