結果

問題 No.2652 [Cherry 6th Tune N] Δρονε χιρχλινγ
ユーザー nikoro256nikoro256
提出日時 2024-02-24 00:06:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 574 ms / 2,000 ms
コード長 719 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 114,384 KB
最終ジャッジ日時 2024-09-29 09:29:16
合計ジャッジ時間 39,293 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,016 KB
testcase_01 AC 408 ms
79,744 KB
testcase_02 AC 402 ms
80,384 KB
testcase_03 AC 421 ms
80,512 KB
testcase_04 AC 482 ms
94,592 KB
testcase_05 AC 468 ms
92,448 KB
testcase_06 AC 480 ms
96,076 KB
testcase_07 AC 526 ms
99,100 KB
testcase_08 AC 530 ms
99,744 KB
testcase_09 AC 528 ms
99,896 KB
testcase_10 AC 527 ms
99,684 KB
testcase_11 AC 520 ms
99,148 KB
testcase_12 AC 574 ms
99,680 KB
testcase_13 AC 525 ms
103,240 KB
testcase_14 AC 521 ms
113,260 KB
testcase_15 AC 517 ms
106,824 KB
testcase_16 AC 515 ms
99,228 KB
testcase_17 AC 515 ms
102,972 KB
testcase_18 AC 550 ms
103,848 KB
testcase_19 AC 518 ms
100,864 KB
testcase_20 AC 525 ms
114,048 KB
testcase_21 AC 515 ms
114,384 KB
testcase_22 AC 511 ms
114,116 KB
testcase_23 AC 503 ms
113,780 KB
testcase_24 AC 510 ms
114,180 KB
testcase_25 AC 512 ms
113,832 KB
testcase_26 AC 526 ms
114,064 KB
testcase_27 AC 507 ms
113,952 KB
testcase_28 AC 507 ms
114,152 KB
testcase_29 AC 517 ms
114,084 KB
testcase_30 AC 511 ms
113,800 KB
testcase_31 AC 508 ms
114,184 KB
testcase_32 AC 512 ms
114,180 KB
testcase_33 AC 514 ms
114,192 KB
testcase_34 AC 538 ms
114,048 KB
testcase_35 AC 555 ms
114,024 KB
testcase_36 AC 555 ms
114,176 KB
testcase_37 AC 540 ms
113,920 KB
testcase_38 AC 541 ms
114,176 KB
testcase_39 AC 562 ms
113,792 KB
testcase_40 AC 430 ms
108,672 KB
testcase_41 AC 350 ms
113,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solveans(dat):
    last=dat[0][1]
    ans=L
    for i in range(1,N):
        ans+=abs(last-dat[i][1])
    ans+=dat[i][-1]
    return ans

from collections import defaultdict
import math
T=int(input())
for _ in range(T):
    N,L=map(int,input().split())
    dat=defaultdict(list)
    sl=(L//math.sqrt(N))
    for _ in range(N):
        x,y=map(int,input().split())
        dat[(y//sl)].append([x,y])
    count=0
    keys=sorted(dat.keys())
    for k in keys:
        if count%2==0:
            dat[k].sort()
        else:
            dat[k].sort(reverse=True)
        count+=1
    ans=[]
    for k in keys:
        for d in dat[k]:
            ans.append(d)
    print(len(ans))
    for a,b in ans:
        print(a,b)
0