結果

問題 No.2652 [Cherry 6th Tune N] Δρονε χιρχλινγ
ユーザー ニックネームニックネーム
提出日時 2024-02-23 22:25:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,172 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 115,980 KB
最終ジャッジ日時 2024-09-29 07:18:18
合計ジャッジ時間 61,370 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 597 ms
78,976 KB
testcase_02 AC 584 ms
79,772 KB
testcase_03 AC 595 ms
81,024 KB
testcase_04 AC 741 ms
96,012 KB
testcase_05 AC 750 ms
96,128 KB
testcase_06 AC 759 ms
96,516 KB
testcase_07 AC 1,024 ms
100,348 KB
testcase_08 AC 963 ms
100,424 KB
testcase_09 AC 982 ms
100,736 KB
testcase_10 AC 954 ms
101,192 KB
testcase_11 AC 991 ms
100,852 KB
testcase_12 AC 940 ms
100,136 KB
testcase_13 AC 1,018 ms
104,360 KB
testcase_14 AC 1,054 ms
115,980 KB
testcase_15 AC 1,017 ms
109,196 KB
testcase_16 AC 974 ms
101,792 KB
testcase_17 AC 1,023 ms
105,928 KB
testcase_18 AC 1,049 ms
104,876 KB
testcase_19 AC 1,034 ms
103,380 KB
testcase_20 AC 1,128 ms
110,704 KB
testcase_21 AC 1,134 ms
109,928 KB
testcase_22 AC 1,172 ms
110,696 KB
testcase_23 AC 1,136 ms
110,812 KB
testcase_24 AC 1,149 ms
110,296 KB
testcase_25 AC 1,099 ms
110,684 KB
testcase_26 AC 1,097 ms
110,572 KB
testcase_27 AC 1,096 ms
110,964 KB
testcase_28 AC 1,080 ms
110,692 KB
testcase_29 AC 1,101 ms
110,848 KB
testcase_30 AC 1,101 ms
110,948 KB
testcase_31 AC 1,095 ms
110,180 KB
testcase_32 AC 1,070 ms
110,668 KB
testcase_33 AC 1,076 ms
110,432 KB
testcase_34 AC 1,092 ms
110,692 KB
testcase_35 AC 1,090 ms
110,184 KB
testcase_36 AC 1,088 ms
110,184 KB
testcase_37 AC 1,118 ms
110,304 KB
testcase_38 AC 1,082 ms
110,820 KB
testcase_39 AC 1,057 ms
110,176 KB
testcase_40 AC 494 ms
115,064 KB
testcase_41 AC 437 ms
115,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    n,l = map(int,input().split())
    xy = sorted(tuple(map(int,input().split())) for _ in range(n))
    a = []; m = int(n**0.5)+1; print(n)
    for i in range(m):
        b = sorted(xy[i*m:(i+1)*m],key=lambda x:x[1])
        if i%2: b.reverse()
        a += b
    for x,y in a: print(x,y)
0