노트

[백준] 7785번 회사에 있는 사람 python 본문

알고리즘

[백준] 7785번 회사에 있는 사람 python

_Myway 2024. 1. 11. 21:49
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)
Comments