結果

問題 No.2652 [Cherry 6th Tune N] Δρονε χιρχλινγ
ユーザー ゼットゼット
提出日時 2024-02-23 23:06:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 672 ms / 2,000 ms
コード長 421 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 106,752 KB
最終ジャッジ日時 2024-09-29 08:31:11
合計ジャッジ時間 41,708 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 370 ms
78,336 KB
testcase_02 AC 364 ms
79,104 KB
testcase_03 AC 359 ms
79,656 KB
testcase_04 AC 438 ms
87,192 KB
testcase_05 AC 431 ms
88,616 KB
testcase_06 AC 441 ms
88,128 KB
testcase_07 AC 504 ms
91,972 KB
testcase_08 AC 556 ms
92,116 KB
testcase_09 AC 573 ms
93,948 KB
testcase_10 AC 508 ms
93,560 KB
testcase_11 AC 552 ms
92,648 KB
testcase_12 AC 552 ms
92,556 KB
testcase_13 AC 573 ms
97,340 KB
testcase_14 AC 542 ms
105,596 KB
testcase_15 AC 595 ms
98,844 KB
testcase_16 AC 513 ms
93,048 KB
testcase_17 AC 551 ms
97,496 KB
testcase_18 AC 555 ms
96,776 KB
testcase_19 AC 554 ms
94,848 KB
testcase_20 AC 535 ms
106,208 KB
testcase_21 AC 606 ms
106,240 KB
testcase_22 AC 549 ms
106,180 KB
testcase_23 AC 541 ms
106,368 KB
testcase_24 AC 523 ms
106,496 KB
testcase_25 AC 528 ms
106,244 KB
testcase_26 AC 518 ms
106,224 KB
testcase_27 AC 526 ms
106,092 KB
testcase_28 AC 529 ms
106,276 KB
testcase_29 AC 672 ms
106,104 KB
testcase_30 AC 534 ms
106,752 KB
testcase_31 AC 568 ms
106,240 KB
testcase_32 AC 525 ms
106,436 KB
testcase_33 AC 554 ms
106,240 KB
testcase_34 AC 566 ms
106,200 KB
testcase_35 AC 526 ms
106,112 KB
testcase_36 AC 516 ms
106,300 KB
testcase_37 AC 568 ms
106,288 KB
testcase_38 AC 518 ms
106,240 KB
testcase_39 AC 562 ms
106,112 KB
testcase_40 AC 336 ms
105,740 KB
testcase_41 AC 414 ms
101,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q=int(input())
for _ in range(Q):
  N,L=map(int,input().split())
  k=L//300+1
  G=[[] for i in range(300)]
  for i in range(N):
    x,y=map(int,input().split())
    pos=x//k
    G[pos].append((y,x))
  for i in range(300):
    G[i].sort()
  result=[]
  for i in range(300):
    for B in G[i]:
      y,x=B[:]
      result.append((x,y))
  print(len(result))
  for i in range(len(result)):
    x,y=result[i][:]
    print(x,y)
0