Softeer GBC 파이썬
·
CodingTest
링크 : https://softeer.ai/practice/info.do?eventIdx=1&psProblemId=584 #testcase # N,M= 3, 3 # X = [[50, 50], [40, 40], [10, 30]] # Y = [[60, 76], [18, 28], [22, 50]] import sys input = sys.stdin.readline N,M = map(int,input().split()) X = [] Y = [] for _ in range(N) : x1, x2 = map(int,input().split()) X.append([x1,x2]) for _ in range(M) : y1, y2 = map(int, input().split()) Y.append([y1,y2]) x_rang..
Softeer [21년 재직자 대회 예선] 비밀메뉴 파이썬
·
CodingTest
문제링크 : 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.spl..
jjongguet
'softeer' 태그의 글 목록