본문 바로가기
Algorithm

[수학/구현] 백준 13484 Tarifa - 파이썬(Python)

by jangThang 2022. 12. 23.
반응형

백준 온라인 저지

 

[ Contents ]

     

     

    1. 문제 (링크 참조)

     

    13484번: Tarifa

    The first line of input contains the integer X (1 ≤ X ≤ 100). The second line of input contains the integer N ​(1 ≤ N ≤ 100). Each of the following N lines contains an integer Pi (0 ≤ Pi ​≤ 10 000), the number of megabytes spent in each

    www.acmicpc.net

     

     

     

    2. 문제 풀이

     번역문을 독해하는 게 어려운 문제입니다. 1개월당 X 데이터가 주어지며, N+1개월 동안 X*(N+1) 데이터를 사용할 수 있습니다. N개월 동안 쓴 데이터를 빼고 남은 데이터량을 구해야 합니다.

     

     

    3. 코드

    X = int(input())
    N = int(input())
    
    res = X*(N+1)
    for _ in range(N):
        p = int(input())
        res -= p
    print(res)

     

     

    star가 되고나서 Tistory

    반응형

    댓글