結果

問題 No.2353 Guardian Dogs in Spring
ユーザー yabityabit
提出日時 2023-06-18 13:05:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-06-26 02:05:00
合計ジャッジ時間 9,528 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 41 ms
51,456 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 105 ms
77,220 KB
testcase_06 AC 106 ms
77,696 KB
testcase_07 AC 107 ms
77,208 KB
testcase_08 AC 104 ms
77,352 KB
testcase_09 AC 108 ms
77,568 KB
testcase_10 AC 106 ms
77,568 KB
testcase_11 AC 107 ms
77,348 KB
testcase_12 AC 112 ms
77,216 KB
testcase_13 AC 112 ms
77,568 KB
testcase_14 AC 45 ms
52,992 KB
testcase_15 AC 120 ms
77,568 KB
testcase_16 AC 123 ms
77,296 KB
testcase_17 AC 130 ms
77,312 KB
testcase_18 AC 123 ms
77,184 KB
testcase_19 AC 123 ms
77,568 KB
testcase_20 AC 47 ms
53,376 KB
testcase_21 AC 88 ms
73,984 KB
testcase_22 AC 110 ms
76,800 KB
testcase_23 AC 117 ms
77,208 KB
testcase_24 AC 82 ms
73,344 KB
testcase_25 AC 76 ms
67,968 KB
testcase_26 AC 68 ms
65,280 KB
testcase_27 AC 46 ms
53,248 KB
testcase_28 AC 95 ms
76,672 KB
testcase_29 AC 112 ms
77,184 KB
testcase_30 AC 107 ms
76,928 KB
testcase_31 AC 112 ms
77,056 KB
testcase_32 AC 121 ms
77,548 KB
testcase_33 AC 111 ms
77,184 KB
testcase_34 AC 112 ms
77,440 KB
testcase_35 AC 113 ms
77,056 KB
testcase_36 AC 93 ms
77,200 KB
testcase_37 AC 66 ms
66,176 KB
testcase_38 AC 104 ms
76,928 KB
testcase_39 AC 101 ms
77,312 KB
testcase_40 AC 105 ms
76,928 KB
testcase_41 AC 105 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
XY = [list(map(int, input().split())) + [i + 1] for i in range(N)]
XY.sort(key=lambda x: x[1])
XY.sort()
ans = []
for i in range(N // 2):
    ans.append((XY[2 * i][2], XY[2 * i + 1][2]))
print(N // 2)
for x, y in ans:
    print(x, y)
0