結果

問題 No.2652 [Cherry 6th Tune N] Δρονε χιρχλινγ
ユーザー nikoro256nikoro256
提出日時 2024-02-24 00:05:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 708 ms / 2,000 ms
コード長 721 bytes
コンパイル時間 514 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 114,176 KB
最終ジャッジ日時 2024-09-29 09:28:02
合計ジャッジ時間 48,763 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,016 KB
testcase_01 AC 507 ms
79,488 KB
testcase_02 AC 486 ms
79,872 KB
testcase_03 AC 507 ms
80,256 KB
testcase_04 AC 623 ms
94,080 KB
testcase_05 AC 598 ms
92,520 KB
testcase_06 AC 625 ms
96,084 KB
testcase_07 AC 662 ms
99,412 KB
testcase_08 AC 708 ms
99,880 KB
testcase_09 AC 660 ms
99,892 KB
testcase_10 AC 665 ms
100,044 KB
testcase_11 AC 633 ms
99,316 KB
testcase_12 AC 638 ms
100,052 KB
testcase_13 AC 675 ms
102,912 KB
testcase_14 AC 639 ms
113,152 KB
testcase_15 AC 641 ms
106,296 KB
testcase_16 AC 617 ms
99,256 KB
testcase_17 AC 634 ms
103,156 KB
testcase_18 AC 670 ms
104,108 KB
testcase_19 AC 645 ms
100,400 KB
testcase_20 AC 676 ms
113,792 KB
testcase_21 AC 666 ms
113,664 KB
testcase_22 AC 659 ms
114,048 KB
testcase_23 AC 648 ms
113,664 KB
testcase_24 AC 650 ms
113,792 KB
testcase_25 AC 656 ms
113,664 KB
testcase_26 AC 651 ms
113,792 KB
testcase_27 AC 642 ms
114,048 KB
testcase_28 AC 648 ms
113,792 KB
testcase_29 AC 651 ms
113,920 KB
testcase_30 AC 660 ms
114,176 KB
testcase_31 AC 654 ms
113,820 KB
testcase_32 AC 676 ms
113,792 KB
testcase_33 AC 660 ms
113,792 KB
testcase_34 AC 628 ms
113,944 KB
testcase_35 AC 670 ms
113,960 KB
testcase_36 AC 632 ms
114,176 KB
testcase_37 AC 625 ms
113,920 KB
testcase_38 AC 657 ms
113,856 KB
testcase_39 AC 614 ms
113,920 KB
testcase_40 AC 489 ms
108,404 KB
testcase_41 AC 395 ms
113,832 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