티스토리 뷰
728x90
문제
풀이
그냥 문제에서 하라는대로 해주면 된다 ,, 쉽따 ..
소스코드
import sys
input = sys.stdin.readline
def add(x):
if x not in arr:
arr.append(x)
def remove(x):
if x in arr:
index = arr.index(x)
arr.pop(index)
def check(x):
if x in arr:
print("1")
else:
print("0")
def toggle(x):
if x in arr:
index = arr.index(x)
arr.pop(index)
else:
add(x)
def all():
global arr
arr = ['1','2','3','4','5','6','7','8','9','10','11','12','13','14','15','16','17','18','19','20']
def empty():
global arr
arr = []
m = int(input())
arr = []
for _ in range(m):
s = input().strip()
if s == 'all':
all()
continue
elif s == 'empty':
empty()
continue
s = s.split()
if s[0] == 'add':
add(s[1])
elif s[0] == 'remove':
remove(s[1])
elif s[0] == 'check':
check(s[1])
elif s[0] == 'toggle':
toggle(s[1])
반응형
'Coding - Algo > python' 카테고리의 다른 글
[백준] 14494번:다이나믹이 뭐에요? (python 파이썬) (0) | 2021.03.16 |
---|---|
[백준] 1890번:점프 (python 파이썬) (0) | 2021.03.15 |
[백준] 9095번:1, 2, 3 더하기 (python 파이썬) (0) | 2021.03.12 |
[백준] 15681번:트리와 쿼리 (python 파이썬) (0) | 2021.03.09 |
[백준] 2565번:전깃줄 (python 파이썬) (1) | 2021.03.08 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- SSAFY
- 백준 dp 문제
- 백준 풀이
- 3996 자바
- 메뉴리뉴얼 풀이
- SWEA
- 프로그래머스 파이썬
- swea 타일링 자바
- 파이썬 풀이
- 1699 자바
- poker swea
- 백준 17144
- swea 타일링
- 프로그래머스
- 더 맵게
- 백준파이썬
- 프로그래머스 자바
- 삼성청년SW아카데미
- swea 4070 타일링
- union-find
- yoloV3
- swea 1240 자바
- 백준
- 프로그래머스 더 맵게
- swea 1240
- 파이썬
- 우분투
- ubuntu
- 1240 자바
- 타일링 자바
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함