반응형
https://www.acmicpc.net/problem/7785
내 답안 (PyPy3)
import sys
input = sys.stdin.readline
emp = []
N = int(input())
for i in range(N):
x, y = input().split()
if y == 'enter':
emp.append(x)
else:
emp.remove(x)
emp.sort(reverse = True)
for i in emp:
print(i)
평범하게 생각나는대로 짰다.
Python 3 는 시간초과가 당연히 떳지만
Pypy3 는 잘 돌아갔다.
반응형
'BOJ > Python' 카테고리의 다른 글
백준 9095번 1, 2, 3 더하기 파이썬 (0) | 2022.06.27 |
---|---|
백준 1065번 한수 파이썬 (0) | 2022.06.26 |
백준 4673번 셀프 넘버 파이썬 (0) | 2022.04.27 |
백준 1912번 연속합 파이썬 (0) | 2022.04.22 |
백준 11399번 ATM 파이썬 (0) | 2022.04.17 |