結果

問題 No.1265 Balloon Survival
ユーザー 👑 rin204rin204
提出日時 2022-04-03 21:53:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,239 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 152,728 KB
最終ジャッジ日時 2024-05-03 07:27:59
合計ジャッジ時間 15,487 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 40 ms
52,096 KB
testcase_08 AC 42 ms
52,352 KB
testcase_09 AC 41 ms
51,840 KB
testcase_10 AC 41 ms
52,096 KB
testcase_11 AC 41 ms
51,712 KB
testcase_12 AC 41 ms
52,096 KB
testcase_13 AC 41 ms
51,840 KB
testcase_14 AC 134 ms
75,136 KB
testcase_15 AC 105 ms
71,424 KB
testcase_16 AC 68 ms
64,128 KB
testcase_17 AC 592 ms
116,712 KB
testcase_18 AC 83 ms
67,072 KB
testcase_19 AC 71 ms
64,384 KB
testcase_20 AC 136 ms
74,880 KB
testcase_21 AC 264 ms
97,664 KB
testcase_22 AC 163 ms
78,720 KB
testcase_23 AC 202 ms
91,520 KB
testcase_24 AC 1,169 ms
152,348 KB
testcase_25 AC 1,152 ms
152,600 KB
testcase_26 AC 1,164 ms
152,464 KB
testcase_27 AC 1,173 ms
152,340 KB
testcase_28 AC 1,142 ms
152,728 KB
testcase_29 AC 1,239 ms
152,468 KB
testcase_30 AC 1,168 ms
152,724 KB
testcase_31 AC 1,162 ms
152,592 KB
testcase_32 AC 1,186 ms
152,728 KB
testcase_33 AC 1,157 ms
152,472 KB
testcase_34 AC 42 ms
51,968 KB
testcase_35 AC 41 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

n = int(input())
X = [0] * n
Y = [0] * n
for i in range(n):
    X[i], Y[i] = map(int, input().split())
dist = []
for i in range(n):
    for j in range(i + 1, n):
        dx = X[j] - X[i]
        dy = Y[j] - Y[i]
        dist.append((dx ** 2 + dy ** 2, i, j))
        
dist.sort(key = lambda x:x[0])
used = [False] * n
ans = 0
for _, i, j in dist:
    if i == 0:
        if not used[j]:
            ans += 1
            used[j] = True
    elif not used[i] and not used[j]:
        used[i] = used[j] = True
    else:
        pass
print(ans)
0