본문 바로가기
알고리즘/소스코드

KOREATECH 1097: 실습시험 연습문제: 가장 긴 접두부분문자열 찾기

by cjw.git 2020. 12. 14.

Link : judge.koreatech.ac.kr/problem.php?id=1097


Python

더보기
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from sys import stdin
 
case_cnt = int(stdin.readline().strip())
 
for _ in range(case_cnt):
    data_list = stdin.readline().strip().split(' ')
    token = ''
    status = True
    try:
        for idx, target in enumerate(data_list[1]):
            for i in range(2len(data_list)):
                if target != data_list[i][idx]:
                    status = False
                    break
            else:
                token += target
            if not status:
                break
    except Exception as ex:
        pass
    finally:
        print(token)
cs

FeedBack

  1.  

 

 

 

cjw.git@gmail.com

댓글