結果

問題 No.2353 Guardian Dogs in Spring
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-06-17 15:12:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 192 bytes
コンパイル時間 513 ms
コンパイル使用メモリ 86,832 KB
実行使用メモリ 78,828 KB
最終ジャッジ日時 2023-09-07 11:37:59
合計ジャッジ時間 11,080 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
71,300 KB
testcase_01 AC 75 ms
71,216 KB
testcase_02 AC 75 ms
70,980 KB
testcase_03 AC 74 ms
71,120 KB
testcase_04 AC 75 ms
71,128 KB
testcase_05 AC 138 ms
78,312 KB
testcase_06 AC 125 ms
78,088 KB
testcase_07 AC 125 ms
78,048 KB
testcase_08 AC 126 ms
78,228 KB
testcase_09 AC 144 ms
78,696 KB
testcase_10 AC 143 ms
78,828 KB
testcase_11 AC 133 ms
78,240 KB
testcase_12 AC 137 ms
78,332 KB
testcase_13 AC 126 ms
78,296 KB
testcase_14 AC 78 ms
71,128 KB
testcase_15 AC 138 ms
78,232 KB
testcase_16 AC 136 ms
78,040 KB
testcase_17 AC 136 ms
78,268 KB
testcase_18 AC 136 ms
78,260 KB
testcase_19 AC 136 ms
78,060 KB
testcase_20 AC 78 ms
71,296 KB
testcase_21 AC 112 ms
77,988 KB
testcase_22 AC 124 ms
77,996 KB
testcase_23 AC 132 ms
78,184 KB
testcase_24 AC 102 ms
76,716 KB
testcase_25 AC 103 ms
76,736 KB
testcase_26 AC 92 ms
75,356 KB
testcase_27 AC 77 ms
71,392 KB
testcase_28 AC 112 ms
77,916 KB
testcase_29 AC 128 ms
78,032 KB
testcase_30 AC 124 ms
77,816 KB
testcase_31 AC 126 ms
77,740 KB
testcase_32 AC 132 ms
78,192 KB
testcase_33 AC 125 ms
78,280 KB
testcase_34 AC 124 ms
78,260 KB
testcase_35 AC 125 ms
78,228 KB
testcase_36 AC 112 ms
77,956 KB
testcase_37 AC 92 ms
75,176 KB
testcase_38 AC 119 ms
77,904 KB
testcase_39 AC 122 ms
77,656 KB
testcase_40 AC 122 ms
78,468 KB
testcase_41 AC 122 ms
77,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
XY = []
for i in range(n):
	x,y = map(int,input().split())
	XY.append([x,y,i+1])
	
	
XY.sort()
print(n//2)
for i in range(n//2):
	a = XY[2*i][2]
	b = XY[2*i+1][2]
	print(a,b)
0