結果

問題 No.2353 Guardian Dogs in Spring
ユーザー AEnAEn
提出日時 2023-07-24 01:03:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 737 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 79,524 KB
最終ジャッジ日時 2024-09-25 03:55:09
合計ジャッジ時間 10,614 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,348 KB
testcase_01 AC 37 ms
52,704 KB
testcase_02 AC 37 ms
52,200 KB
testcase_03 AC 37 ms
53,836 KB
testcase_04 AC 37 ms
53,900 KB
testcase_05 AC 103 ms
78,260 KB
testcase_06 AC 100 ms
78,516 KB
testcase_07 AC 102 ms
78,620 KB
testcase_08 AC 99 ms
78,404 KB
testcase_09 AC 128 ms
79,088 KB
testcase_10 AC 125 ms
79,284 KB
testcase_11 AC 107 ms
78,280 KB
testcase_12 AC 109 ms
78,544 KB
testcase_13 AC 109 ms
78,392 KB
testcase_14 AC 40 ms
53,664 KB
testcase_15 AC 122 ms
79,248 KB
testcase_16 AC 122 ms
79,524 KB
testcase_17 AC 119 ms
79,140 KB
testcase_18 AC 119 ms
79,176 KB
testcase_19 AC 120 ms
79,024 KB
testcase_20 AC 43 ms
54,800 KB
testcase_21 AC 83 ms
76,924 KB
testcase_22 AC 110 ms
78,136 KB
testcase_23 AC 114 ms
78,336 KB
testcase_24 AC 84 ms
76,680 KB
testcase_25 AC 77 ms
74,680 KB
testcase_26 AC 59 ms
65,040 KB
testcase_27 AC 42 ms
54,380 KB
testcase_28 AC 87 ms
76,928 KB
testcase_29 AC 110 ms
78,740 KB
testcase_30 AC 112 ms
78,396 KB
testcase_31 AC 108 ms
78,260 KB
testcase_32 AC 114 ms
78,280 KB
testcase_33 AC 117 ms
79,008 KB
testcase_34 AC 116 ms
78,780 KB
testcase_35 AC 122 ms
79,172 KB
testcase_36 AC 91 ms
77,076 KB
testcase_37 AC 60 ms
66,400 KB
testcase_38 AC 100 ms
77,372 KB
testcase_39 AC 103 ms
77,624 KB
testcase_40 AC 108 ms
78,184 KB
testcase_41 AC 112 ms
78,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

Y = []
posi = []
for i in range(N):
    x,y = map(int, input().split())
    Y.append(y)
    posi.append((i,x,y))
posi.sort(key=lambda x:x[1])

d = {num:i for i,num in enumerate(sorted(list(set(Y))))}
p = [list() for _ in range(N)]
for i,x,y in posi:
    p[d[y]].append((i,x))

res = []
m = []
for i in range(len(p)):
    if len(p[i])>=3:
        cnt = len(p[i])//2
        while cnt:
            id1,_ = p[i].pop()
            id2,_ = p[i].pop()
            res.append((id1+1,id2+1))
            cnt -= 1
    while p[i]:
        id,_ = p[i].pop()
        m.append(id+1)

cnt = len(m)//2
while cnt:
    id1 = m.pop()
    id2 = m.pop()
    res.append((id1,id2))
    cnt -= 1
print(len(res))
for a,b in res:
    print(a,b)
0