import java.util.Scanner;
public class ACM3117 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while(true) {
int teams = sc.nextInt(); // 0 <= T <= 200
int matches = sc.nextInt(); // 0 <= N <= 10000
if(teams == 0) break;
int sum = 0;
for(int i = 0; i < teams; i++) {
sc.nextLine();
sc.next();
sum += sc.nextInt();
}
System.out.println((matches * 3 - sum));
}
}
}
- 범위에 따른 예외 처리 따위 하나도 안했는데 Accepted 되었을 뿐이고...-_-
- 몇번 해보면서 느끼는건데 poj는 사소한 예외는 신경 안쓰는 경우가 많은거 같더라구요....;; 괜히 Accept안되니까 우리가 온갖 예외처리를 다 잡아넣어서 그렇지요..;;;;; -김태진