結果

問題 No.2353 Guardian Dogs in Spring
ユーザー titiatitia
提出日時 2023-06-16 21:54:15
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 314 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 78,412 KB
最終ジャッジ日時 2024-06-24 13:56:23
合計ジャッジ時間 9,639 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 39 ms
53,668 KB
testcase_02 AC 40 ms
54,204 KB
testcase_03 AC 40 ms
53,140 KB
testcase_04 AC 39 ms
52,416 KB
testcase_05 AC 82 ms
77,608 KB
testcase_06 AC 79 ms
77,724 KB
testcase_07 AC 78 ms
77,784 KB
testcase_08 AC 81 ms
77,676 KB
testcase_09 AC 79 ms
77,736 KB
testcase_10 AC 86 ms
77,604 KB
testcase_11 AC 84 ms
77,576 KB
testcase_12 AC 83 ms
77,604 KB
testcase_13 AC 81 ms
77,608 KB
testcase_14 AC 40 ms
54,008 KB
testcase_15 AC 89 ms
77,820 KB
testcase_16 AC 87 ms
77,948 KB
testcase_17 AC 89 ms
77,668 KB
testcase_18 AC 88 ms
77,900 KB
testcase_19 AC 86 ms
77,708 KB
testcase_20 AC 41 ms
54,280 KB
testcase_21 AC 61 ms
68,924 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 51 ms
64,428 KB
testcase_27 AC 41 ms
54,312 KB
testcase_28 AC 65 ms
70,612 KB
testcase_29 AC 80 ms
77,180 KB
testcase_30 RE -
testcase_31 AC 82 ms
77,608 KB
testcase_32 AC 90 ms
77,556 KB
testcase_33 AC 81 ms
77,660 KB
testcase_34 AC 81 ms
77,584 KB
testcase_35 AC 82 ms
77,728 KB
testcase_36 AC 62 ms
70,836 KB
testcase_37 AC 52 ms
64,900 KB
testcase_38 RE -
testcase_39 RE -
testcase_40 AC 77 ms
77,128 KB
testcase_41 RE -
権限があれば一括ダウンロードができます

ソースコード

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):
    ANS.append((P[i][2],P[i+1][2]))

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