You will be fine

<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



반응형

블로그의 정보

57개월 BackEnd

BFine

활동하기