結果

問題 No.2353 Guardian Dogs in Spring
ユーザー ニックネームニックネーム
提出日時 2023-06-16 23:01:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 361 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,464 KB
最終ジャッジ日時 2024-06-24 16:04:17
合計ジャッジ時間 23,671 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,584 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 385 ms
77,184 KB
testcase_06 AC 430 ms
77,184 KB
testcase_07 AC 497 ms
76,800 KB
testcase_08 AC 482 ms
77,568 KB
testcase_09 AC 531 ms
78,080 KB
testcase_10 AC 590 ms
77,824 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 54 ms
62,592 KB
testcase_21 AC 115 ms
76,800 KB
testcase_22 AC 211 ms
77,236 KB
testcase_23 WA -
testcase_24 AC 111 ms
76,964 KB
testcase_25 AC 108 ms
76,524 KB
testcase_26 AC 85 ms
73,344 KB
testcase_27 AC 52 ms
62,720 KB
testcase_28 AC 121 ms
76,868 KB
testcase_29 WA -
testcase_30 AC 221 ms
76,632 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 108 ms
76,704 KB
testcase_37 AC 73 ms
71,296 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
xy = sorted([tuple(map(int,input().split())) for _ in range(n)])
f = [False]*n
print(n//2)
for i,(ix,iy) in enumerate(xy):
    if f[i]: continue
    f[i] = True; md = 16001; mj = -1
    for j,(jx,jy) in enumerate(xy):
        d = abs(ix-jx)+abs(iy-jy)
        if not f[j] and d<md: md = d; mj = j
    f[mj] = True
    if mj!=-1: print(i+1,mj+1)
0