結果

問題 No.2652 [Cherry 6th Tune N] Δρονε χιρχλινγ
ユーザー yupoohyupooh
提出日時 2024-02-23 23:07:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 478 bytes
コンパイル時間 515 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 102,656 KB
最終ジャッジ日時 2024-09-29 08:31:48
合計ジャッジ時間 36,891 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
60,800 KB
testcase_01 AC 401 ms
80,512 KB
testcase_02 AC 393 ms
81,152 KB
testcase_03 AC 359 ms
80,256 KB
testcase_04 AC 351 ms
84,736 KB
testcase_05 AC 346 ms
85,120 KB
testcase_06 AC 354 ms
85,120 KB
testcase_07 AC 374 ms
87,408 KB
testcase_08 AC 375 ms
86,820 KB
testcase_09 AC 383 ms
89,600 KB
testcase_10 AC 381 ms
88,688 KB
testcase_11 AC 376 ms
88,064 KB
testcase_12 AC 375 ms
87,680 KB
testcase_13 AC 390 ms
92,928 KB
testcase_14 AC 398 ms
99,200 KB
testcase_15 WA -
testcase_16 AC 376 ms
87,788 KB
testcase_17 AC 388 ms
92,024 KB
testcase_18 AC 386 ms
90,984 KB
testcase_19 AC 386 ms
91,520 KB
testcase_20 AC 347 ms
99,712 KB
testcase_21 AC 344 ms
99,688 KB
testcase_22 AC 348 ms
99,712 KB
testcase_23 AC 347 ms
99,968 KB
testcase_24 AC 346 ms
99,968 KB
testcase_25 WA -
testcase_26 AC 344 ms
99,940 KB
testcase_27 AC 356 ms
99,756 KB
testcase_28 AC 344 ms
99,968 KB
testcase_29 AC 364 ms
99,968 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 256 ms
102,656 KB
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
t=int(input())
for _ in range(t):
  n,l=map(int,input().split())
  M=1000
  bucket=[[] for i in range(M)]
  for i in range(n):
    x,y=map(int,input().split())
    bucket[x*M//(10**9+1)].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