https://softeer.ai/practice/info.do?idx=1&eid=623
import sys
m, n, k = map(int, input().split())
secret_menu = input().split()
button_num = input().split()
aa = ''.join(secret_menu)
bb = ''.join(button_num)
tt = bb.find(aa)
if tt >= 0:
print('secret')
else:
print('normal')
'코딩테스트 연습' 카테고리의 다른 글
[Softeer] 장애물 인식 프로그램 (0) | 2023.09.15 |
---|---|
[Softeer] 지도 자동 구축 (0) | 2023.09.14 |
[Programmers] 괄호 회전하기 (0) | 2023.09.12 |
[Programmers] 캐시 (0) | 2023.09.11 |
[Programmers] n^2 배열 자르기 (0) | 2023.09.08 |