ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 리스트1
    파이썬/리스트 2024. 11. 16. 13:24
    import sys
    sys.stdin = open('input_11652.txt')
    readl = sys.stdin.readline
    
    
    n = int(readl())
    
    card = {} # 1:3, 2:4
              # 1, 2 
    
    for i in range(n):
        # card.key = list(map(int, readl().split())) # 입력이 1 2 4 4 이렇게 한줄로 받을때 list
         #map객체로 나와서 리스트로 바꿈
        if card.key >= 1:
            card.value +=1
    
    print(max(card.values))

     

     

     

    jum = [] #(3, 4), (1,1)#리스트안에 뭐가들어가든 상관없음. tuple

    import sys
    sys.stdin = open('input_11650.txt')
    readl = sys.stdin.readline
    
    
    n = int(readl())  #5
    
    jum = [] #(3, 4), (1,1)#리스트안에 뭐가들어가든 상관없음. tuple
    # arr = list(map(int(input()) for i in range(n))) #arr=[]
    
    for i in range(n):
        x, y = map(int,readl().split())  #3 4    1 1
        jum.append((x,y))
        
    jum.sort()
    for x, y in jum:
        print(x, y)
    # print('\n'.join(map(str,jum))) -> 괄호랑 ''가 출력됨

     

Designed by Tistory.