結果

問題 No.1265 Balloon Survival
ユーザー tamatotamato
提出日時 2020-10-23 22:09:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 795 bytes
コンパイル時間 628 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 137,076 KB
最終ジャッジ日時 2024-07-21 10:41:18
合計ジャッジ時間 17,472 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 39 ms
52,736 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 39 ms
52,864 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 39 ms
52,736 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 39 ms
52,480 KB
testcase_08 AC 39 ms
52,480 KB
testcase_09 AC 38 ms
52,480 KB
testcase_10 AC 39 ms
52,608 KB
testcase_11 AC 40 ms
52,608 KB
testcase_12 AC 40 ms
52,864 KB
testcase_13 AC 39 ms
52,352 KB
testcase_14 AC 166 ms
84,992 KB
testcase_15 AC 128 ms
76,544 KB
testcase_16 AC 74 ms
66,944 KB
testcase_17 AC 667 ms
110,332 KB
testcase_18 AC 88 ms
70,272 KB
testcase_19 AC 75 ms
66,432 KB
testcase_20 AC 162 ms
85,280 KB
testcase_21 AC 319 ms
88,484 KB
testcase_22 AC 201 ms
84,992 KB
testcase_23 AC 217 ms
85,456 KB
testcase_24 AC 1,276 ms
135,540 KB
testcase_25 AC 1,274 ms
136,308 KB
testcase_26 AC 1,339 ms
137,068 KB
testcase_27 AC 1,293 ms
136,432 KB
testcase_28 AC 1,274 ms
137,072 KB
testcase_29 AC 1,335 ms
137,076 KB
testcase_30 AC 1,350 ms
136,948 KB
testcase_31 AC 1,277 ms
136,544 KB
testcase_32 AC 1,339 ms
136,308 KB
testcase_33 AC 1,277 ms
136,588 KB
testcase_34 AC 39 ms
52,852 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    from math import hypot
    input = sys.stdin.readline

    N = int(input())
    X = []
    Y = []
    for _ in range(N):
        x, y = map(int, input().split())
        X.append(x)
        Y.append(y)

    ev = []
    for i in range(N):
        xi, yi = X[i], Y[i]
        for j in range(i+1, N):
            xj, yj = X[j], Y[j]
            ev.append((hypot(xi-xj, yi-yj), i, j))
    ev.sort(key=lambda x: x[0])
    seen = [0] * N
    ans = 0
    for _, i, j in ev:
        if i == 0:
            if not seen[j]:
                ans += 1
                seen[j] = 1
        else:
            if seen[i] == seen[j] == 0:
                seen[i] = 1
                seen[j] = 1
    print(ans)


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