結果

問題 No.2353 Guardian Dogs in Spring
ユーザー titiatitia
提出日時 2023-06-16 21:55:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 592 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 77,948 KB
最終ジャッジ日時 2024-06-24 13:59:27
合計ジャッジ時間 9,753 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
52,764 KB
testcase_01 AC 42 ms
53,308 KB
testcase_02 AC 40 ms
52,688 KB
testcase_03 AC 39 ms
52,724 KB
testcase_04 AC 40 ms
52,212 KB
testcase_05 AC 97 ms
77,736 KB
testcase_06 AC 82 ms
77,456 KB
testcase_07 AC 80 ms
77,948 KB
testcase_08 AC 81 ms
77,900 KB
testcase_09 AC 81 ms
77,780 KB
testcase_10 AC 81 ms
77,900 KB
testcase_11 AC 84 ms
77,596 KB
testcase_12 AC 86 ms
77,468 KB
testcase_13 AC 82 ms
77,536 KB
testcase_14 AC 41 ms
54,340 KB
testcase_15 AC 90 ms
77,808 KB
testcase_16 AC 91 ms
77,808 KB
testcase_17 AC 91 ms
77,784 KB
testcase_18 AC 91 ms
77,372 KB
testcase_19 AC 88 ms
77,408 KB
testcase_20 AC 40 ms
55,072 KB
testcase_21 AC 60 ms
68,868 KB
testcase_22 AC 79 ms
76,988 KB
testcase_23 AC 93 ms
77,704 KB
testcase_24 AC 59 ms
67,600 KB
testcase_25 AC 58 ms
67,500 KB
testcase_26 AC 52 ms
64,120 KB
testcase_27 AC 41 ms
54,156 KB
testcase_28 AC 62 ms
70,568 KB
testcase_29 AC 82 ms
77,204 KB
testcase_30 AC 83 ms
76,908 KB
testcase_31 AC 82 ms
77,616 KB
testcase_32 AC 88 ms
77,604 KB
testcase_33 AC 83 ms
77,804 KB
testcase_34 AC 83 ms
77,520 KB
testcase_35 AC 84 ms
77,836 KB
testcase_36 AC 63 ms
70,604 KB
testcase_37 AC 53 ms
64,412 KB
testcase_38 AC 71 ms
74,140 KB
testcase_39 AC 71 ms
74,900 KB
testcase_40 AC 80 ms
77,444 KB
testcase_41 AC 77 ms
76,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from operator import itemgetter

N=int(input())
P=[list(map(int,input().split()))+[i+1] for i in range(N)]

P.sort(key=itemgetter(0))
P.sort(key=itemgetter(1))

ANS=[]

for i in range(0,N,2):
    if i+1<N:
        ANS.append((P[i][2],P[i+1][2]))

print(len(ANS))
for x,y in ANS:
    print(x,y)
0