Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- GROUP BY 절
- 응용
- BOJ
- baekjoon
- Python
- 공공데이터
- 자바
- 헤드퍼스트 디자인패턴
- 기초
- java
- JAVA 11
- 기본
- programmers
- 명품 자바 프로그래밍
- 개념
- Python 3
- 파이썬
- pypy3
- 단계별로 풀어보기
- Codeup
- Java11
- 코딩테스트
- 이론
- 백준
- 기초100제
- SQLD / SQLP
- Codeforces Round #802 (Div. 2)
- HAVING 절
- SELECT 절
- level1
Archives
- Today
- Total
목록집합과 맵 (1)
Development Project
[ Baekjoon - 단계별로 풀어보기(06/06~06/08) ] - 12단계 : 집합과 맵
10815 : 숫자 카드 import sys n = int(sys.stdin.readline().strip()) getNum = set(map(int,sys.stdin.readline().split())) m = int(sys.stdin.readline().strip()) checkNum = list(map(int,sys.stdin.readline().split())) for i in checkNum: if i in getNum: print(1) else: print(0) # import sys N = int(sys.stdin.readline().rstrip('\n')) numbers = set(map(int, sys.stdin.readline().rstrip('\n').split())) M = int(..
CodingTest/Baekjoon
2022. 6. 6. 13:07