지나가던 개발자

[Python] 백준 17254번(키보드 이벤트) 문제 풀이 본문

PS/Python

[Python] 백준 17254번(키보드 이벤트) 문제 풀이

KwonYongHyeon 2023. 8. 14. 14:54

 

n, m = map(int,input().split())
l = [[int(x[0]), int(x[1]), x[2]] for x in [input().split() for i in range(m)]]
for i in range(max([x[1] for x in l])+1):
    toPrint = sorted([x for x in l if x[1]==i], key=lambda x:x[0])
    if toPrint!=[]:
        for j in toPrint:
            print(j[-1],end="")
Comments