結果

問題 No.2652 [Cherry 6th Tune N] Δρονε χιρχλινγ
ユーザー yupoohyupooh
提出日時 2024-02-23 23:13:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 875 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 108,764 KB
最終ジャッジ日時 2024-09-29 08:38:30
合計ジャッジ時間 52,311 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 510 ms
79,360 KB
testcase_02 AC 479 ms
79,360 KB
testcase_03 AC 512 ms
79,744 KB
testcase_04 AC 665 ms
92,160 KB
testcase_05 AC 669 ms
92,024 KB
testcase_06 AC 671 ms
93,056 KB
testcase_07 AC 742 ms
94,728 KB
testcase_08 AC 767 ms
94,748 KB
testcase_09 AC 788 ms
96,244 KB
testcase_10 AC 781 ms
95,648 KB
testcase_11 AC 758 ms
95,452 KB
testcase_12 AC 759 ms
95,640 KB
testcase_13 AC 815 ms
99,216 KB
testcase_14 AC 830 ms
108,044 KB
testcase_15 AC 806 ms
101,364 KB
testcase_16 AC 752 ms
95,076 KB
testcase_17 AC 775 ms
99,648 KB
testcase_18 AC 785 ms
98,400 KB
testcase_19 AC 790 ms
97,752 KB
testcase_20 AC 811 ms
108,380 KB
testcase_21 AC 838 ms
108,508 KB
testcase_22 AC 837 ms
108,632 KB
testcase_23 AC 838 ms
108,636 KB
testcase_24 AC 834 ms
108,120 KB
testcase_25 AC 858 ms
108,124 KB
testcase_26 AC 875 ms
108,760 KB
testcase_27 AC 822 ms
107,876 KB
testcase_28 AC 837 ms
108,380 KB
testcase_29 AC 833 ms
108,512 KB
testcase_30 AC 819 ms
108,760 KB
testcase_31 AC 815 ms
108,500 KB
testcase_32 AC 817 ms
108,764 KB
testcase_33 AC 821 ms
108,380 KB
testcase_34 AC 824 ms
108,640 KB
testcase_35 AC 825 ms
108,376 KB
testcase_36 AC 825 ms
108,380 KB
testcase_37 AC 806 ms
107,992 KB
testcase_38 AC 822 ms
108,760 KB
testcase_39 AC 828 ms
108,128 KB
testcase_40 AC 391 ms
106,604 KB
testcase_41 AC 316 ms
105,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
t=int(input())
for _ in range(t):
  n,l=map(int,input().split())
  M=int(n**0.5)+1
  bucket=[[] for i in range(M)]
  xy=[]
  X=[]
  for i in range(n):
    x,y=map(int,input().split())
    xy.append((x,y))
  xy.sort()
  for i in range(n):
    x,y=xy[i]
    bucket[i*M//n].append((x,y)) 
  for i in range(M):
    if i&1:
      bucket[i].sort(key=lambda x:-x[1])
    else:
      bucket[i].sort(key=lambda x:x[1])
  ans=[]
  for i in range(M):
    for j in bucket[i]:
      ans.append(j)
  print(n)
  for i in ans:
    print(*i)
0