삐까냥의 파도타기

1032번) 명령 프롬프트 본문

코딩/백준 알고리즘

1032번) 명령 프롬프트

금손형아 2017. 11. 11. 16:43

문제 출처 : https://www.acmicpc.net/problem/1032


import java.util.Scanner;


public class Q1032 {


public static void main(String[] args) {

Scanner sc = new Scanner(System.in);

int num = sc.nextInt();

char[] chars = sc.next().toCharArray();

for ( int i = 1; i < num; i++ ) {

String temp = sc.next();

for ( int  j = 0; j < chars.length; j++ ) {

if ( chars[j] != temp.charAt(j) ) {

chars[j] = '?';

}

}

}

System.out.println(String.valueOf(chars));

}

}

 


'코딩 > 백준 알고리즘' 카테고리의 다른 글

2941번) 크로아티아 알파벳  (0) 2017.11.11
2743번) 단어 길이 재기  (0) 2017.11.11
10808번) 알파벳 개수  (0) 2017.11.11
1100번) 하얀 칸  (0) 2017.11.11
2908번) 상수  (0) 2017.11.11