結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,992 KB
testcase_01 AC 400 ms
83,620 KB
testcase_02 AC 386 ms
83,212 KB
testcase_03 AC 407 ms
84,800 KB
testcase_04 AC 520 ms
116,628 KB
testcase_05 AC 528 ms
116,180 KB
testcase_06 AC 542 ms
117,448 KB
testcase_07 AC 629 ms
117,372 KB
testcase_08 AC 606 ms
116,716 KB
testcase_09 AC 648 ms
117,000 KB
testcase_10 AC 635 ms
116,616 KB
testcase_11 AC 626 ms
117,028 KB
testcase_12 AC 632 ms
118,084 KB
testcase_13 AC 676 ms
117,964 KB
testcase_14 AC 700 ms
126,464 KB
testcase_15 AC 664 ms
121,148 KB
testcase_16 AC 632 ms
116,728 KB
testcase_17 AC 663 ms
119,884 KB
testcase_18 AC 654 ms
118,660 KB
testcase_19 AC 658 ms
116,428 KB
testcase_20 AC 650 ms
126,976 KB
testcase_21 AC 642 ms
123,648 KB
testcase_22 AC 607 ms
123,140 KB
testcase_23 AC 611 ms
127,432 KB
testcase_24 AC 612 ms
127,160 KB
testcase_25 AC 611 ms
126,892 KB
testcase_26 AC 615 ms
126,968 KB
testcase_27 AC 624 ms
127,008 KB
testcase_28 AC 626 ms
123,828 KB
testcase_29 AC 644 ms
127,440 KB
testcase_30 AC 624 ms
121,856 KB
testcase_31 AC 602 ms
121,632 KB
testcase_32 AC 620 ms
123,648 KB
testcase_33 AC 639 ms
126,720 KB
testcase_34 AC 678 ms
126,080 KB
testcase_35 AC 623 ms
126,920 KB
testcase_36 AC 629 ms
121,976 KB
testcase_37 AC 627 ms
122,576 KB
testcase_38 AC 622 ms
124,404 KB
testcase_39 AC 633 ms
127,312 KB
testcase_40 AC 392 ms
114,956 KB
testcase_41 AC 375 ms
119,488 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