結果

問題 No.1265 Balloon Survival
ユーザー 👑 rin204rin204
提出日時 2022-01-18 21:16:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,959 ms / 2,000 ms
コード長 483 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 151,980 KB
最終ジャッジ日時 2024-05-02 19:30:34
合計ジャッジ時間 23,292 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 43 ms
51,712 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 40 ms
51,712 KB
testcase_05 AC 42 ms
51,712 KB
testcase_06 AC 42 ms
51,968 KB
testcase_07 AC 43 ms
52,096 KB
testcase_08 AC 41 ms
51,584 KB
testcase_09 AC 41 ms
51,712 KB
testcase_10 AC 41 ms
51,712 KB
testcase_11 AC 41 ms
51,712 KB
testcase_12 AC 41 ms
51,840 KB
testcase_13 AC 42 ms
51,968 KB
testcase_14 AC 193 ms
74,496 KB
testcase_15 AC 151 ms
70,784 KB
testcase_16 AC 81 ms
64,256 KB
testcase_17 AC 824 ms
101,416 KB
testcase_18 AC 107 ms
67,200 KB
testcase_19 AC 88 ms
64,256 KB
testcase_20 AC 193 ms
74,112 KB
testcase_21 AC 414 ms
94,592 KB
testcase_22 AC 244 ms
77,952 KB
testcase_23 AC 265 ms
79,488 KB
testcase_24 AC 1,912 ms
150,192 KB
testcase_25 AC 1,811 ms
130,996 KB
testcase_26 AC 1,829 ms
131,928 KB
testcase_27 AC 1,791 ms
131,120 KB
testcase_28 AC 1,758 ms
131,792 KB
testcase_29 AC 1,919 ms
151,980 KB
testcase_30 AC 1,790 ms
131,788 KB
testcase_31 AC 1,806 ms
130,868 KB
testcase_32 AC 1,959 ms
150,836 KB
testcase_33 AC 1,844 ms
131,228 KB
testcase_34 AC 43 ms
52,352 KB
testcase_35 AC 40 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
xy = [list(map(int, input().split())) for _ in range(n)]
dist = []
for i in range(n):
    for j in range(i + 1, n):
        dx = xy[j][0] - xy[i][0]
        dy = xy[j][1] - xy[i][1]
        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