Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 편스토랑 우승상품
- hackerrank
- Kaggle
- 자연어처리
- 더현대서울 맛집
- 프로그래머스
- gs25
- 맥북
- 프로그래머스 파이썬
- 백준
- 우분투
- Baekjoon
- programmers
- Docker
- 코로나19
- dacon
- 파이썬
- ubuntu
- github
- SW Expert Academy
- 편스토랑
- Git
- Real or Not? NLP with Disaster Tweets
- ChatGPT
- PYTHON
- AI 경진대회
- 금융문자분석경진대회
- 캐치카페
- 데이콘
- leetcode
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 10815번 : 숫자 카드 (Python) 본문
728x90
반응형
👨🏻💻 코드 ( Solution )
import sys
def make_answer(answer, check_dict, temp):
try:
check = check_dict[temp]
temp = ""
answer.append("1")
except:
answer.append("0")
temp = ""
return answer, temp
def number_card(my_numbers, check_numbers):
answer = []
check_dict = {}
temp = ""
for num in my_numbers:
if num.isdigit() or num == "-":
temp += num
elif num == " ":
check_dict[temp] = 0
temp = ""
check_dict[temp] = 0
temp = ""
for num in check_numbers:
if num.isdigit() or num == "-":
temp += num
elif num == " ":
answer, temp = make_answer(answer, check_dict, temp)
if temp != "":
answer, temp = make_answer(answer, check_dict, temp)
return " ".join(answer)
if __name__ == "__main__":
N = int(input())
my_numbers = input()
M = int(input())
check_numbers = input()
print(number_card(my_numbers, check_numbers))
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 10156번 : 과자 (Python) (0) | 2021.10.25 |
---|---|
[BaekJoon] 10951번 : A+B - 4 (Python) (0) | 2021.10.24 |
[SW Expert Academy] 2050번 : 알파벳을 숫자로 변환 (Python) (0) | 2021.10.22 |
[SW Expert Academy] 2070번 : 큰 놈, 작은 놈, 같은 놈 (Python) (0) | 2021.10.21 |
[BaekJoon] 10797번 : 10부제 (Python) (0) | 2021.10.19 |
Comments