-
Notifications
You must be signed in to change notification settings - Fork 693
/
Solution.java
30 lines (25 loc) · 888 Bytes
/
Solution.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//Problem: https://www.hackerrank.com/challenges/bon-appetit
//Java 8
import java.io.*;
import java.util.*;
public class Solution {
public static void main(String[] args) {
/* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution. */
Scanner input = new Scanner(System.in);
int n = input.nextInt();
int k = input.nextInt();
int totalCost = 0;
int notEaten = 0;
for(int i = 0; i < n; i++) {
int item = input.nextInt();
if(i == k) notEaten = item;
totalCost += item;
}
int charged = input.nextInt();
if(charged == totalCost/2) {
System.out.println(notEaten/2);
System.exit(0);
}
System.out.println("Bon Appetit");
}
}