Всички вх/изход минават, но Judje дава 88/100 - For Loop Ex
Здравейте,
Моля за съдействие. Задачата е 07 от For-Loop - Exercise. Всички тестове вход/изход минават вярно, но Judje дава 88/100.
import java.util.Scanner;
public class ForLoop07Salary {
public static void main(String[] args) {
Scanner SC = new Scanner(System.in);
int count = Integer.parseInt(SC.nextLine());
int salary = Integer.parseInt(SC.nextLine());
int i = 0;
while (i < count) {
i++;
if (salary > 0) {
String web = SC.nextLine();
if (web.equals("Facebook")) {
salary -= 150;
}
if (web.equals("Instagram")) {
salary -= 100;
}
if (web.equals("Reddit")) {
salary -= 50;
}
} else {
System.out.println("You have lost your salary.");
break;
}
}
if (salary > 0) {
System.out.printf("%d", salary);
}
}
}