<Algorithm> 25. 1032번 명령 프롬프트
by BFine반응형
1. 1032번 명령 프롬프트
단순 비교 문제
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 31 32 33 34 35 | import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws NumberFormatException, IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int N = Integer.parseInt(br.readLine()); String[] input = new String[N]; String result = ""; for(int i = 0; i < N; i++) { input[i] = br.readLine(); } for(int i = 0; i<input[0].length(); i++) { boolean flag = false; char temp; for(int j = 0; j < N - 1; j++) { if( input[j].charAt(i) != input[j+1].charAt(i)) { flag = true; break; } } if(!flag) { result += input[0].charAt(i); }else { result += "?"; } } System.out.println(result); } } | cs |
반응형
'공부(2018~2019) - 스킨변경전 > Algorithm' 카테고리의 다른 글
<Algorithm> 27. 4673번 셀프넘버 (0) | 2018.08.02 |
---|---|
<Algorithm> 26. 1010번 다리놓기 (0) | 2018.08.02 |
<Algorithm> 24. 1065번 한수 (0) | 2018.08.02 |
<Algorithm> 23. 1085번 직사각형에서 탈출하기 (0) | 2018.08.02 |
<Algorithm> 22. 1261번 알고스팟(벽1 부수기) (0) | 2018.08.01 |
블로그의 정보
57개월 BackEnd
BFine