結果

問題 No.1265 Balloon Survival
ユーザー ntudantuda
提出日時 2022-03-12 10:30:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,032 ms / 2,000 ms
コード長 509 bytes
コンパイル時間 578 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 150,232 KB
最終ジャッジ日時 2024-09-16 16:05:36
合計ジャッジ時間 13,897 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 37 ms
52,224 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 37 ms
52,352 KB
testcase_09 AC 36 ms
51,840 KB
testcase_10 AC 36 ms
51,584 KB
testcase_11 AC 38 ms
52,224 KB
testcase_12 AC 36 ms
52,480 KB
testcase_13 AC 36 ms
51,840 KB
testcase_14 AC 113 ms
75,648 KB
testcase_15 AC 92 ms
71,552 KB
testcase_16 AC 61 ms
64,896 KB
testcase_17 AC 503 ms
123,036 KB
testcase_18 AC 71 ms
67,328 KB
testcase_19 AC 62 ms
65,280 KB
testcase_20 AC 115 ms
75,520 KB
testcase_21 AC 224 ms
95,104 KB
testcase_22 AC 158 ms
89,856 KB
testcase_23 AC 170 ms
91,476 KB
testcase_24 AC 972 ms
149,848 KB
testcase_25 AC 995 ms
150,108 KB
testcase_26 AC 959 ms
149,852 KB
testcase_27 AC 962 ms
150,104 KB
testcase_28 AC 1,011 ms
149,972 KB
testcase_29 AC 986 ms
150,172 KB
testcase_30 AC 1,008 ms
149,848 KB
testcase_31 AC 997 ms
150,100 KB
testcase_32 AC 1,032 ms
150,108 KB
testcase_33 AC 955 ms
150,232 KB
testcase_34 AC 38 ms
52,608 KB
testcase_35 AC 37 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
XY = [list(map(int, input().split())) for _ in range(N)]
D = []

for i in range(N - 1):
    x1, y1 = XY[i]
    for j in range(i + 1, N):
        x2, y2 = XY[j]
        d2 = (x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2)
        D.append((d2, i, j))
D.sort(key = lambda x:x[0])
cnt = 0
removed = [0] * N
for d, i, j in D:
    if removed[i] or removed[j]:
        continue
    if i == 0:
        removed[j] = 1
        cnt += 1
    else:
        removed[i] = 1
        removed[j] = 1
print(cnt)
0