BOJ 11651座標2の位置合わせ


https://www.acmicpc.net/problem/11651
1秒、256 MBメモリ
input :
  • N (1 ≤ N ≤ 100,000)
  • i番ポイントの位置はxiとyiです.(-100,000 ≤ xi, yi ≤ 100,000)
  • output :
    出力
  • N行のポイントソート結果
  • 条件:
  • yでソートし、xでソートします.
  • import sys
    
    n = int(sys.stdin.readline())
    position = []
    for i in range(n):
        x, y = map(int, sys.stdin.readline().split())
        position.append((x, y))
    
    position = sorted(position, key=lambda x : (x[1], x[0]))
    
    for item in position:
        print(*item)