結果

問題 No.1265 Balloon Survival
ユーザー brthyyjpbrthyyjp
提出日時 2020-10-23 22:58:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,518 ms / 2,000 ms
コード長 616 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 110,260 KB
最終ジャッジ日時 2024-07-21 12:07:34
合計ジャッジ時間 19,494 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,832 KB
testcase_01 AC 36 ms
53,748 KB
testcase_02 AC 37 ms
52,980 KB
testcase_03 AC 39 ms
52,920 KB
testcase_04 AC 37 ms
52,752 KB
testcase_05 AC 39 ms
52,896 KB
testcase_06 AC 38 ms
53,948 KB
testcase_07 AC 38 ms
53,668 KB
testcase_08 AC 38 ms
53,400 KB
testcase_09 AC 37 ms
52,388 KB
testcase_10 AC 37 ms
54,056 KB
testcase_11 AC 36 ms
53,788 KB
testcase_12 AC 37 ms
53,296 KB
testcase_13 AC 36 ms
53,388 KB
testcase_14 AC 188 ms
80,536 KB
testcase_15 AC 148 ms
79,308 KB
testcase_16 AC 83 ms
76,272 KB
testcase_17 AC 745 ms
99,540 KB
testcase_18 AC 104 ms
77,444 KB
testcase_19 AC 87 ms
76,752 KB
testcase_20 AC 183 ms
80,420 KB
testcase_21 AC 363 ms
87,152 KB
testcase_22 AC 231 ms
82,472 KB
testcase_23 AC 250 ms
83,076 KB
testcase_24 AC 1,498 ms
109,884 KB
testcase_25 AC 1,504 ms
109,792 KB
testcase_26 AC 1,495 ms
110,260 KB
testcase_27 AC 1,498 ms
109,892 KB
testcase_28 AC 1,491 ms
109,816 KB
testcase_29 AC 1,505 ms
109,824 KB
testcase_30 AC 1,510 ms
109,940 KB
testcase_31 AC 1,504 ms
109,964 KB
testcase_32 AC 1,518 ms
110,020 KB
testcase_33 AC 1,515 ms
110,180 KB
testcase_34 AC 39 ms
54,208 KB
testcase_35 AC 38 ms
52,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
XY = []
for i in range(n):
    x, y = map(int, input().split())
    XY.append((x, y))

if n == 1:
    print(0)
    exit()

import math
INF = float('inf')
T = []
for i in range(n-1):
    x1, y1=XY[i]
    for j in range(i+1, n):
        x2,y2 = XY[j]
        d = (x1-x2)**2+(y1-y2)**2
        T.append((d, i*10000+j))

T.sort()
#print(T)
used = set()
ans = 0
for d, k in T:
    i, j = divmod(k, 10000)
    if i == 0:
        if j not in used:
            ans += 1
            used.add(j)
    else:
        if i not in used and j not in used:
            used.add(i)
            used.add(j)
print(ans)
0