문제(출처: https://www.acmicpc.net/problem/9518) 문제 풀이 빈자리 중 가장 많은 이웃이 있는 위치 + 사람이 앉아있는 자리의 이웃 수 (중복 x) my solution (Java)import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.util.StringTokenizer;public class _9518_ { // 로마 카톨릭 미사 public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReade..