結果

問題 No.2353 Guardian Dogs in Spring
ユーザー rlangevinrlangevin
提出日時 2023-06-16 22:00:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 636 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 78,052 KB
最終ジャッジ日時 2024-06-24 14:10:41
合計ジャッジ時間 8,919 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,576 KB
testcase_01 AC 43 ms
58,616 KB
testcase_02 AC 43 ms
59,888 KB
testcase_03 AC 43 ms
58,312 KB
testcase_04 AC 42 ms
59,276 KB
testcase_05 AC 79 ms
77,616 KB
testcase_06 AC 75 ms
77,128 KB
testcase_07 AC 78 ms
78,052 KB
testcase_08 AC 81 ms
77,704 KB
testcase_09 AC 84 ms
77,152 KB
testcase_10 AC 83 ms
77,088 KB
testcase_11 AC 82 ms
77,940 KB
testcase_12 AC 80 ms
77,712 KB
testcase_13 AC 84 ms
77,556 KB
testcase_14 AC 44 ms
59,296 KB
testcase_15 AC 92 ms
77,748 KB
testcase_16 AC 90 ms
77,376 KB
testcase_17 AC 93 ms
77,660 KB
testcase_18 AC 92 ms
77,344 KB
testcase_19 AC 92 ms
77,544 KB
testcase_20 AC 46 ms
60,228 KB
testcase_21 AC 62 ms
68,944 KB
testcase_22 AC 82 ms
76,904 KB
testcase_23 AC 90 ms
77,612 KB
testcase_24 AC 64 ms
69,456 KB
testcase_25 AC 59 ms
68,272 KB
testcase_26 AC 55 ms
65,392 KB
testcase_27 AC 44 ms
59,748 KB
testcase_28 AC 65 ms
72,264 KB
testcase_29 AC 84 ms
77,232 KB
testcase_30 AC 80 ms
77,352 KB
testcase_31 AC 84 ms
77,524 KB
testcase_32 AC 91 ms
77,416 KB
testcase_33 AC 92 ms
78,008 KB
testcase_34 AC 93 ms
77,324 KB
testcase_35 AC 94 ms
77,272 KB
testcase_36 AC 67 ms
72,104 KB
testcase_37 AC 51 ms
64,012 KB
testcase_38 AC 71 ms
75,624 KB
testcase_39 AC 77 ms
77,164 KB
testcase_40 AC 85 ms
77,144 KB
testcase_41 AC 87 ms
77,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
X, Y = [0] * N, [0] * N
M = 8005
D = [[] for i in range(M)]
for i in range(N):
    X[i], Y[i] = map(int, input().split())
    D[Y[i]].append((X[i], i))

ans = []
pre = -1
for i in range(M):
    if not D[i]:
        continue
    D[i].sort()
    if pre != -1:
        _, z = D[i].pop()
        ans.append((pre, z + 1))        
    while len(D[i]) >= 2:
        _, z = D[i].pop()
        _, w = D[i].pop()
        ans.append((z + 1, w + 1))
    if D[i]:
        _, pre = D[i].pop()
        pre += 1
    else:
        pre = -1
        
print(len(ans))
for a, b in ans:
    print(a, b)
0