結果

問題 No.2353 Guardian Dogs in Spring
ユーザー lloyzlloyz
提出日時 2023-06-16 23:20:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 620 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 79,104 KB
最終ジャッジ日時 2024-06-24 16:32:11
合計ジャッジ時間 29,423 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,672 KB
testcase_01 AC 40 ms
52,760 KB
testcase_02 AC 46 ms
52,792 KB
testcase_03 AC 39 ms
52,748 KB
testcase_04 AC 38 ms
52,780 KB
testcase_05 AC 829 ms
78,612 KB
testcase_06 AC 841 ms
78,704 KB
testcase_07 AC 901 ms
78,540 KB
testcase_08 AC 891 ms
78,464 KB
testcase_09 AC 820 ms
78,732 KB
testcase_10 AC 906 ms
78,632 KB
testcase_11 AC 1,058 ms
78,336 KB
testcase_12 AC 1,194 ms
78,464 KB
testcase_13 AC 1,179 ms
78,208 KB
testcase_14 AC 54 ms
61,568 KB
testcase_15 AC 1,094 ms
77,952 KB
testcase_16 AC 1,072 ms
78,172 KB
testcase_17 AC 1,093 ms
78,300 KB
testcase_18 AC 1,106 ms
78,124 KB
testcase_19 WA -
testcase_20 AC 51 ms
62,116 KB
testcase_21 AC 126 ms
77,068 KB
testcase_22 AC 258 ms
78,080 KB
testcase_23 AC 964 ms
77,944 KB
testcase_24 AC 125 ms
77,184 KB
testcase_25 AC 114 ms
76,672 KB
testcase_26 AC 92 ms
72,320 KB
testcase_27 AC 55 ms
61,696 KB
testcase_28 AC 143 ms
77,060 KB
testcase_29 AC 495 ms
78,080 KB
testcase_30 AC 271 ms
77,952 KB
testcase_31 AC 387 ms
78,384 KB
testcase_32 AC 985 ms
77,824 KB
testcase_33 AC 1,161 ms
78,080 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 147 ms
77,184 KB
testcase_37 AC 104 ms
72,576 KB
testcase_38 AC 194 ms
77,184 KB
testcase_39 AC 204 ms
77,952 KB
testcase_40 WA -
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

P.sort(key=lambda x: (x[0], x[1]))
ANS = []
seen = set()
for i in range(n):
    cx, cy, idx = P[i]
    if idx in seen:
        continue
    d = 10**18
    res = None
    for j in range(n):
        nx, ny, nidx = P[j]
        if idx == nidx or nidx in seen:
            continue
        if (nx - cx)**2 + (ny - cy)**2 < d:
            d = (nx - cx)**2 + (ny - cy)**2
            res = nidx
    if res is not None:
        ANS.append((idx, res))
        seen.add(idx)
        seen.add(res)
print(len(ANS))
for ans in ANS:
    print(*ans)
0