개발자 톡
연습문제 톡
[21년 재직자 대회 예선] 비밀 메뉴
비밀 메뉴 반례 부탁드립니다.
- 등록일
- 2023-04-15 18:53:03
- 조회수
- 484
- 작성자
- susan1231
m,n,k = map(int,input().split())
secret_num = list(map(int,input().split()))
user_num = list(map(int,input().split()))
j = 0
for i in range(n):
if user_num[i] == secret_num[j]:
j += 1
else:
j = 0
if user_num[i] == secret_num[j]:
j += 1
if j == m:
print('secret')
break
else:
print('normal')
비밀 메뉴 반례 부탁드립니다.
#[21년_재직자_대회_예선]_비밀_메뉴
#비밀메뉴
#python