結果

問題 No.1265 Balloon Survival
ユーザー flippergoflippergo
提出日時 2025-01-01 14:27:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,139 ms / 2,000 ms
コード長 519 bytes
コンパイル時間 461 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 151,912 KB
最終ジャッジ日時 2025-01-01 14:28:03
合計ジャッジ時間 15,700 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,044 KB
testcase_01 AC 38 ms
52,696 KB
testcase_02 AC 38 ms
53,208 KB
testcase_03 AC 39 ms
52,404 KB
testcase_04 AC 40 ms
52,364 KB
testcase_05 AC 42 ms
52,484 KB
testcase_06 AC 42 ms
53,368 KB
testcase_07 AC 41 ms
52,156 KB
testcase_08 AC 42 ms
53,172 KB
testcase_09 AC 40 ms
53,052 KB
testcase_10 AC 41 ms
53,576 KB
testcase_11 AC 39 ms
54,068 KB
testcase_12 AC 40 ms
52,272 KB
testcase_13 AC 39 ms
53,628 KB
testcase_14 AC 128 ms
78,064 KB
testcase_15 AC 99 ms
73,352 KB
testcase_16 AC 66 ms
66,900 KB
testcase_17 AC 547 ms
123,804 KB
testcase_18 AC 79 ms
68,588 KB
testcase_19 AC 71 ms
67,188 KB
testcase_20 AC 120 ms
77,548 KB
testcase_21 AC 240 ms
95,876 KB
testcase_22 AC 171 ms
89,280 KB
testcase_23 AC 192 ms
93,516 KB
testcase_24 AC 1,075 ms
151,472 KB
testcase_25 AC 1,079 ms
151,744 KB
testcase_26 AC 1,067 ms
151,484 KB
testcase_27 AC 1,082 ms
151,476 KB
testcase_28 AC 1,072 ms
151,600 KB
testcase_29 AC 1,082 ms
151,596 KB
testcase_30 AC 1,089 ms
151,740 KB
testcase_31 AC 1,085 ms
151,680 KB
testcase_32 AC 1,139 ms
151,912 KB
testcase_33 AC 1,107 ms
151,660 KB
testcase_34 AC 40 ms
53,072 KB
testcase_35 AC 40 ms
53,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [list(map(int,input().split())) for _ in range(N)]
def d2(z,w):
    return (z[0]-w[0])**2+(z[1]-w[1])**2
B = []
for i in range(N-1):
    for j in range(i+1,N):
        B.append([d2(A[i],A[j]),i,j])
B = sorted(B,key=lambda x:x[0])
C = set()
ans = 0
for d,i,j in B:
    if i not in C and j not in C:
        if i!=0 and j!=0:
            C.add(i)
            C.add(j)
        elif i==0:
            C.add(j)
            ans += 1
        elif j==0:
            C.add(i)
            ans += 1
print(ans)
0