작성일 :

문제 링크

13484번 - Tarifa

설명

간단한 수학에 대한 구현 문제입니다.

문제에서 설명하는대로 Pero 가 매달 사용 가능한 데이터 한도와
Pero 가 n 번의 달 동안, 매달 사용한 데이터 소모량의 차이를 누적하여 계산해 나가면
최종적으로 pero 가 n + 1 번째 달에 사용 가능한 데이터 한도를 계산할 수 있습니다.


Code

[ C# ]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Solution {
  class Program {
    static void Main(string[] args) {

      int.TryParse(Console.ReadLine(), out int limit);
      int.TryParse(Console.ReadLine(), out int n);

      int avail = limit;
      for (int i = 0; i < n; i++) {
        int.TryParse(Console.ReadLine(), out int spend);
        avail += (limit - spend);
      }

      Console.WriteLine(avail);

    }
  }
}



[ C++ ]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <bits/stdc++.h>

using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  int limit, n; cin >> limit >> n;

  int avail = limit;
  for (int i = 0; i < n; i++) {
    int spend; cin >> spend;
    avail += (limit - spend);
  }

  cout << avail << "\n";

  return 0;
}