보안을 그리다, 훈이

[Baekjoon/Python3] 5555번 반지 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 5555번 반지

HooNeee 2020. 12. 5. 21:37

[Baekjoon/Python3] 5555번 반지

 

www.acmicpc.net/problem/5555

 

5555번: 반지

당신은 N개의 반지를 가지고 있다. 각각의 반지는 대문자 10 문자로 이루어진 문자열이 새겨져 있다. 반지는 문자열의 시작과 끝이 연결된 형태로 문자가 새겨져 있다. 반지에 각인된 문자열을

www.acmicpc.net

 

s = input()
num = 0
for i in range(int(input())):
    if s in input() * 2:
        num += 1
print(num)

 

s = input()
num = 0
ring_s = []
for i in range(int(input())):
    ring_s.append(input() * 2)
for j in ring_s:
    if s in j:
        num += 1
print(num)
Comments