結果

問題 No.1265 Balloon Survival
ユーザー 👑 rin204rin204
提出日時 2022-01-18 21:19:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,538 ms / 2,000 ms
コード長 535 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 133,796 KB
最終ジャッジ日時 2024-05-02 19:31:20
合計ジャッジ時間 19,560 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 36 ms
51,840 KB
testcase_05 AC 36 ms
52,352 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 37 ms
52,224 KB
testcase_09 AC 36 ms
51,968 KB
testcase_10 AC 35 ms
51,968 KB
testcase_11 AC 37 ms
51,840 KB
testcase_12 AC 37 ms
52,224 KB
testcase_13 AC 37 ms
51,840 KB
testcase_14 AC 161 ms
73,344 KB
testcase_15 AC 126 ms
69,760 KB
testcase_16 AC 72 ms
63,360 KB
testcase_17 AC 698 ms
102,704 KB
testcase_18 AC 89 ms
66,304 KB
testcase_19 AC 74 ms
63,616 KB
testcase_20 AC 161 ms
73,600 KB
testcase_21 AC 359 ms
97,724 KB
testcase_22 AC 207 ms
77,056 KB
testcase_23 AC 226 ms
78,336 KB
testcase_24 AC 1,538 ms
132,520 KB
testcase_25 AC 1,515 ms
133,792 KB
testcase_26 AC 1,472 ms
133,544 KB
testcase_27 AC 1,492 ms
133,420 KB
testcase_28 AC 1,499 ms
133,672 KB
testcase_29 AC 1,532 ms
133,796 KB
testcase_30 AC 1,493 ms
133,468 KB
testcase_31 AC 1,467 ms
133,460 KB
testcase_32 AC 1,498 ms
133,780 KB
testcase_33 AC 1,475 ms
133,572 KB
testcase_34 AC 37 ms
52,608 KB
testcase_35 AC 35 ms
52,352 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()
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
print(ans)
0