結果

問題 No.2652 [Cherry 6th Tune N] Δρονε χιρχλινγ
ユーザー titiatitia
提出日時 2024-02-28 03:09:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 365 ms / 2,000 ms
コード長 593 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 83,072 KB
実行使用メモリ 124,548 KB
最終ジャッジ日時 2024-09-29 12:17:35
合計ジャッジ時間 32,381 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,480 KB
testcase_01 AC 292 ms
80,544 KB
testcase_02 AC 269 ms
80,664 KB
testcase_03 AC 264 ms
80,756 KB
testcase_04 AC 328 ms
104,724 KB
testcase_05 AC 316 ms
103,524 KB
testcase_06 AC 315 ms
108,116 KB
testcase_07 AC 343 ms
111,364 KB
testcase_08 AC 341 ms
111,380 KB
testcase_09 AC 365 ms
111,660 KB
testcase_10 AC 337 ms
111,328 KB
testcase_11 AC 340 ms
112,080 KB
testcase_12 AC 347 ms
110,944 KB
testcase_13 AC 352 ms
112,924 KB
testcase_14 AC 341 ms
122,864 KB
testcase_15 AC 351 ms
118,180 KB
testcase_16 AC 337 ms
111,136 KB
testcase_17 AC 342 ms
112,224 KB
testcase_18 AC 346 ms
114,984 KB
testcase_19 AC 357 ms
112,092 KB
testcase_20 AC 333 ms
116,936 KB
testcase_21 AC 328 ms
116,036 KB
testcase_22 AC 325 ms
116,880 KB
testcase_23 AC 323 ms
116,700 KB
testcase_24 AC 333 ms
116,856 KB
testcase_25 AC 324 ms
116,816 KB
testcase_26 AC 330 ms
117,208 KB
testcase_27 AC 325 ms
117,032 KB
testcase_28 AC 325 ms
116,536 KB
testcase_29 AC 321 ms
117,092 KB
testcase_30 AC 317 ms
116,932 KB
testcase_31 AC 327 ms
116,892 KB
testcase_32 AC 331 ms
116,732 KB
testcase_33 AC 318 ms
116,632 KB
testcase_34 AC 320 ms
116,772 KB
testcase_35 AC 317 ms
116,736 KB
testcase_36 AC 326 ms
116,468 KB
testcase_37 AC 328 ms
116,396 KB
testcase_38 AC 328 ms
116,732 KB
testcase_39 AC 335 ms
116,736 KB
testcase_40 AC 262 ms
124,548 KB
testcase_41 AC 292 ms
120,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from operator import itemgetter

T=int(input())
for tests in range(T):
    N,L=map(int,input().split())
    P=[list(map(int,input().split())) for i in range(N)]

    c=L/(N**(1/2))

    LIST=[[] for i in range(int(L/c+3))]

    for x,y in P:
        LIST[int(x/c)].append((x,y))

    ANS=[]

    for i in range(len(LIST)):
        LIST[i].sort(key=itemgetter(1))

        if i%2==1:
            LIST[i].reverse()

        for x,y in LIST[i]:
            ANS.append((x,y))

    print(len(ANS)+1)

    for x,y in ANS:
        print(x,y)

    print(*ANS[0])
0