結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 583 ms
78,848 KB
testcase_02 AC 578 ms
79,744 KB
testcase_03 AC 603 ms
80,896 KB
testcase_04 AC 756 ms
95,756 KB
testcase_05 AC 762 ms
95,744 KB
testcase_06 AC 757 ms
96,648 KB
testcase_07 AC 929 ms
100,100 KB
testcase_08 AC 934 ms
100,660 KB
testcase_09 AC 988 ms
100,988 KB
testcase_10 AC 958 ms
100,916 KB
testcase_11 AC 961 ms
100,396 KB
testcase_12 AC 944 ms
99,940 KB
testcase_13 AC 1,030 ms
104,328 KB
testcase_14 WA -
testcase_15 AC 1,057 ms
108,676 KB
testcase_16 AC 969 ms
101,308 KB
testcase_17 AC 1,030 ms
105,800 KB
testcase_18 AC 1,052 ms
104,744 KB
testcase_19 AC 1,010 ms
103,648 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 555 ms
115,424 KB
testcase_41 AC 449 ms
114,804 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): a += sorted(xy[i*m:(i+1)*m],key=lambda x:x[1])
    for x,y in a: print(x,y)
0