문제링크 : https://softeer.ai/practice/info.do?eventIdx=1&psProblemId=623
#testcase
# M, N, K = 3, 10, 5
# temp = str(145)
# finds = str(3312414514)
import sys
input = sys.stdin.readline
M,N,K = map(int,input().split())
temp = input().strip().replace(' ','')
finds = input().strip().replace(' ','')
finds = finds.split(temp)
if len(finds) >= 2 :
print("secret")
else :
print("normal")
finds = finds.split(temp) 에서 temp가 속하면 finds 문자열을 split 한다는 점을 기반으로 풀었다
'CodingTest' 카테고리의 다른 글
프로그래머스 60057 문자열압축 파이썬 (0) | 2022.06.15 |
---|---|
Softeer GBC 파이썬 (0) | 2022.06.05 |
SWEA 1206. [S/W 문제해결 기본] 1일차 - View 파이썬 (0) | 2022.06.05 |
SWEA 1208. [S/W 문제해결 기본] 1일차 Flatten 파이썬 (0) | 2022.06.05 |
SWEA 1213. [S/W 문제해결 기본] 3일차 - String 파이썬 (0) | 2022.06.05 |