CodeChef - Chef and Spells

CodeChef - Chef and Spells
CodeChef - Chef and Spells

Chef has three spells. Their powers are A, B, and C respectively. Initially, Chef has 00 hit points, and if he uses a spell with power P, then his number of hit points increases by P.

Before going to sleep, Chef wants to use exactly two spells out of these three. Find the maximum number of hit points Chef can have after using the spells.

Input Format

  • The first line of the input contains a single integer T denoting the number of test cases. The description of T test cases follows.
  • The first and only line of each test case contains three space-separated integers A, B, and C.

Output Format

For each test case, print a single line containing one integer — the maximum number of hit points.

Constraints

  • 1 ≤ T ≤ 104
  • 1 ≤ A,B,C ≤ 10^8

Subtasks

Subtask #1 (100 points): original constraints

Sample 1:

Input Output

2 12
4 2 8 32
10 14 18

Explanation:

Example case 1: Chef has three possible options:

  • Use the first and second spell and have 4+2=6 hitpoints.
  • Use the second and third spell and have 2+8=10 hitpoints.
  • Use the first and third spell and have 4+8=12 hitpoints.

Chef should choose the third option and use the spells with power 4 and 8 to have 12 hitpoints.

Example case 2: Chef should use the spells with power 14 and 18.

import java.util.Scanner;

class Spells {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);

    int T = sc.nextInt();

    while (T-- > 0) {
      int A = sc.nextInt();
      int B = sc.nextInt();
      int C = sc.nextInt();

      System.out.println(A + B + C - Math.min(A, Math.min(B, C)));
    }

    sc.close();
  }
}