結果

問題 No.1265 Balloon Survival
ユーザー lloyzlloyz
提出日時 2022-05-26 00:34:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 629 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 130,648 KB
最終ジャッジ日時 2024-09-20 14:52:38
合計ジャッジ時間 21,241 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,376 KB
testcase_01 AC 37 ms
52,332 KB
testcase_02 AC 40 ms
52,716 KB
testcase_03 AC 37 ms
53,608 KB
testcase_04 AC 37 ms
53,420 KB
testcase_05 AC 37 ms
52,876 KB
testcase_06 AC 37 ms
52,324 KB
testcase_07 AC 38 ms
52,524 KB
testcase_08 AC 36 ms
53,064 KB
testcase_09 AC 37 ms
54,096 KB
testcase_10 AC 36 ms
53,368 KB
testcase_11 AC 37 ms
53,560 KB
testcase_12 AC 38 ms
52,788 KB
testcase_13 AC 37 ms
53,056 KB
testcase_14 AC 173 ms
73,120 KB
testcase_15 AC 136 ms
70,284 KB
testcase_16 AC 74 ms
64,964 KB
testcase_17 AC 778 ms
101,184 KB
testcase_18 AC 95 ms
66,688 KB
testcase_19 AC 77 ms
64,556 KB
testcase_20 AC 169 ms
74,208 KB
testcase_21 AC 404 ms
96,252 KB
testcase_22 AC 218 ms
76,952 KB
testcase_23 AC 240 ms
79,336 KB
testcase_24 AC 1,673 ms
129,312 KB
testcase_25 AC 1,680 ms
129,272 KB
testcase_26 AC 1,659 ms
130,324 KB
testcase_27 AC 1,695 ms
129,648 KB
testcase_28 AC 1,696 ms
130,648 KB
testcase_29 AC 1,746 ms
130,380 KB
testcase_30 AC 1,701 ms
130,376 KB
testcase_31 AC 1,673 ms
129,440 KB
testcase_32 AC 1,751 ms
129,584 KB
testcase_33 AC 1,685 ms
129,332 KB
testcase_34 AC 43 ms
54,672 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt

def main():
    n = int(input())
    P = [list(map(int, input().split())) for _ in range(n)]

    L = []
    for i in range(n):
        for j in range(i + 1, n):
            L.append((sqrt((P[i][0] - P[j][0])**2 + (P[i][1] - P[j][1])**2), i, j))

    L.sort()
    seen = set()
    ans = 0
    for _, i, j in L:
        if i == 0:
            if j in seen:
                continue
            ans += 1
            seen.add(j)
        else:
            if i in seen or j in seen:
                continue
            seen.add(i)
            seen.add(j)
    print(ans)

if __name__ == '__main__':
    main()
0