結果

問題 No.2652 [Cherry 6th Tune N] Δρονε χιρχλινγ
ユーザー miya145592miya145592
提出日時 2024-02-24 01:23:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 731 ms / 2,000 ms
コード長 813 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 127,360 KB
最終ジャッジ日時 2024-09-29 09:43:00
合計ジャッジ時間 41,743 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,992 KB
testcase_01 AC 375 ms
83,492 KB
testcase_02 AC 352 ms
83,604 KB
testcase_03 AC 375 ms
84,812 KB
testcase_04 AC 465 ms
116,876 KB
testcase_05 AC 470 ms
116,184 KB
testcase_06 AC 465 ms
117,576 KB
testcase_07 AC 532 ms
117,764 KB
testcase_08 AC 566 ms
117,100 KB
testcase_09 AC 587 ms
116,932 KB
testcase_10 AC 608 ms
116,876 KB
testcase_11 AC 575 ms
117,468 KB
testcase_12 AC 574 ms
118,004 KB
testcase_13 AC 611 ms
118,092 KB
testcase_14 AC 648 ms
126,720 KB
testcase_15 AC 579 ms
121,148 KB
testcase_16 AC 541 ms
117,372 KB
testcase_17 AC 584 ms
120,144 KB
testcase_18 AC 569 ms
118,528 KB
testcase_19 AC 567 ms
117,320 KB
testcase_20 AC 580 ms
127,104 KB
testcase_21 AC 696 ms
123,776 KB
testcase_22 AC 604 ms
123,524 KB
testcase_23 AC 551 ms
127,360 KB
testcase_24 AC 534 ms
127,104 KB
testcase_25 AC 655 ms
127,104 KB
testcase_26 AC 637 ms
126,828 KB
testcase_27 AC 559 ms
126,976 KB
testcase_28 AC 534 ms
123,832 KB
testcase_29 AC 731 ms
127,064 KB
testcase_30 AC 595 ms
121,724 KB
testcase_31 AC 551 ms
121,888 KB
testcase_32 AC 619 ms
123,776 KB
testcase_33 AC 625 ms
127,232 KB
testcase_34 AC 561 ms
126,336 KB
testcase_35 AC 527 ms
127,232 KB
testcase_36 AC 537 ms
122,348 KB
testcase_37 AC 560 ms
122,704 KB
testcase_38 AC 557 ms
124,660 KB
testcase_39 AC 700 ms
127,104 KB
testcase_40 AC 345 ms
114,816 KB
testcase_41 AC 319 ms
119,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import sys
input = sys.stdin.readline
T = int(input())
for _ in range(T):
    N, L = map(int, input().split())
    DIV = int(N**0.5) + 1
    XY = [list(map(int, input().split())) for _ in range(N)]
    Z = [[[] for _ in range(DIV+1)] for _ in range(DIV+1)]
    D = [0 for _ in range(DIV+1)]
    D[DIV] = L+1
    for i in range(1, DIV):
        D[i] = int(L/DIV*i)
    for i in range(N):
        x, y = XY[i]
        xpos = bisect.bisect_left(D, x)
        ypos = bisect.bisect_left(D, y)
        Z[xpos][ypos].append(i)
    ans = []
    for i in range(DIV+1):
        for j in range(DIV+1):
            if i%2==0:
                k = j
            else:
                k = DIV-j
            for l in Z[i][k]:
                ans.append(XY[l])
    print(len(ans))
    for a in ans:
        print(*a)
0