일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 2909
- 라즈베리파이3
- 백준
- 트리
- Python
- 라즈베리파이3b+
- 알고리즘
- node.js
- baekjun
- 크롤링
- raspberrypi
- 라즈베리파이
- 16.04
- Algorythm
- nav-tab
- springboot3.x
- 2579
- 파이썬
- 라즈비안
- bootstrap
- 13237
- Crawling
- NAV
- algotythm
- dynaminprogramming
- dp
- ubuntu
- MongoDB
- CSS
- HTML
Archives
- Today
- Total
노트
[백준] 7785번 회사에 있는 사람 python 본문
n = int(input())
li = dict()
for i in range(n):
a,b = input().split()
if b =='enter':
li[a]=b
else:
del li[a]
li=sorted(li.keys(),reverse=True)
for i in li:
print(i)
'알고리즘' 카테고리의 다른 글
[백준] 11724번 연결 요소의 개수 python (0) | 2024.02.04 |
---|---|
[백준] 2909번 캔디 구매 python (0) | 2024.01.28 |
[백준] 1417번 국회의원 선거 python (0) | 2023.12.09 |
[백준] 11399번 ATM python (0) | 2023.11.30 |
[백준] 13565번 침투 python (1) | 2023.11.26 |
Comments