結果

問題 No.2652 [Cherry 6th Tune N] Δρονε χιρχλινγ
ユーザー detteiuudetteiuu
提出日時 2024-11-29 01:52:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 826 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 131,888 KB
最終ジャッジ日時 2024-11-29 01:53:33
合計ジャッジ時間 48,280 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 AC 430 ms
79,232 KB
testcase_02 AC 440 ms
80,384 KB
testcase_03 AC 479 ms
81,152 KB
testcase_04 AC 516 ms
107,648 KB
testcase_05 AC 515 ms
105,216 KB
testcase_06 AC 561 ms
108,544 KB
testcase_07 AC 612 ms
111,732 KB
testcase_08 AC 601 ms
110,812 KB
testcase_09 AC 637 ms
112,816 KB
testcase_10 AC 659 ms
113,912 KB
testcase_11 AC 628 ms
112,092 KB
testcase_12 AC 603 ms
111,976 KB
testcase_13 AC 638 ms
113,500 KB
testcase_14 AC 675 ms
131,888 KB
testcase_15 AC 677 ms
117,208 KB
testcase_16 AC 618 ms
111,612 KB
testcase_17 AC 696 ms
114,704 KB
testcase_18 AC 661 ms
118,124 KB
testcase_19 AC 649 ms
111,600 KB
testcase_20 AC 724 ms
127,360 KB
testcase_21 AC 654 ms
127,744 KB
testcase_22 AC 800 ms
127,616 KB
testcase_23 AC 683 ms
127,360 KB
testcase_24 AC 627 ms
127,488 KB
testcase_25 AC 613 ms
127,488 KB
testcase_26 AC 664 ms
127,728 KB
testcase_27 AC 677 ms
127,744 KB
testcase_28 AC 677 ms
127,488 KB
testcase_29 AC 667 ms
128,000 KB
testcase_30 AC 614 ms
127,488 KB
testcase_31 AC 660 ms
127,696 KB
testcase_32 AC 826 ms
127,488 KB
testcase_33 AC 650 ms
127,744 KB
testcase_34 AC 692 ms
127,684 KB
testcase_35 AC 669 ms
127,740 KB
testcase_36 AC 621 ms
127,488 KB
testcase_37 AC 684 ms
127,872 KB
testcase_38 AC 677 ms
127,744 KB
testcase_39 AC 732 ms
127,232 KB
testcase_40 AC 392 ms
127,872 KB
testcase_41 AC 431 ms
129,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

for _ in range(T):
    N, L = map(int, input().split())
    XY = [list(map(int, input().split())) for _ in range(N)]
    XY.sort(key=lambda x:x[1])
    RANGE = int(N**0.5)+1
    qS = [[] for _ in range(N//RANGE+1)]
    for i in range(N):
        X, Y = XY[i]
        qS[i//RANGE].append((X, Y))
    for i in range(N//RANGE+1):
        qS[i].sort(key=lambda x:x[0], reverse=i%2)
    ans = []
    for i in range(N//RANGE+1):
        for x, y in qS[i]:
            ans.append((x, y))
    print(len(ans))
    for x, y in ans:
        print(x, y)
0