작성일 :

문제 링크

9699번 - RICE SACK

설명

입력으로 자루들의 무게가 주어질 때 가장 무거운 자루의 무게를 찾는 문제입니다.

간단하게, 각 테스트 케이스들에 대하여 가장 무거운 자루 를 탐색한 후 문제의 출력 조건에 맞추어 출력합니다.


Code

[ C# ]

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

      var cntCase = int.Parse(Console.ReadLine()!);

      for (int i = 1; i <= cntCase; i++) {
        var weights = Console.ReadLine()!.Split(' ').Select(int.Parse).ToArray();
        int maxWeight = weights.Max();
        Console.WriteLine($"Case #{i}: {maxWeight}");
      }

    }
  }
}



[ 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 cntCase; cin >> cntCase;

  for (int i = 1; i <= cntCase; i++) {
    vector<int> weights(5);
    for (int j = 0; j < 5; j++)
      cin >> weights[j];
    int maxWeight = *max_element(weights.begin(), weights.end());
    cout << "Case #" << i << ": " << maxWeight << "\n";
  }

  return 0;
}