結果

問題 No.1265 Balloon Survival
ユーザー lloyzlloyz
提出日時 2022-05-26 00:28:38
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 465 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 152,076 KB
最終ジャッジ日時 2024-09-20 14:51:38
合計ジャッジ時間 22,423 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 38 ms
53,576 KB
testcase_02 AC 41 ms
53,432 KB
testcase_03 AC 39 ms
53,072 KB
testcase_04 AC 41 ms
53,284 KB
testcase_05 AC 39 ms
52,872 KB
testcase_06 AC 38 ms
52,608 KB
testcase_07 AC 38 ms
52,688 KB
testcase_08 AC 37 ms
54,216 KB
testcase_09 AC 38 ms
54,020 KB
testcase_10 AC 37 ms
53,960 KB
testcase_11 AC 36 ms
52,960 KB
testcase_12 AC 37 ms
52,704 KB
testcase_13 AC 37 ms
53,420 KB
testcase_14 AC 180 ms
75,032 KB
testcase_15 AC 142 ms
72,172 KB
testcase_16 AC 76 ms
64,936 KB
testcase_17 AC 809 ms
102,112 KB
testcase_18 AC 98 ms
69,092 KB
testcase_19 AC 81 ms
64,616 KB
testcase_20 AC 178 ms
74,768 KB
testcase_21 AC 415 ms
95,028 KB
testcase_22 AC 233 ms
78,696 KB
testcase_23 AC 249 ms
79,816 KB
testcase_24 AC 1,814 ms
150,428 KB
testcase_25 TLE -
testcase_26 AC 1,709 ms
132,496 KB
testcase_27 AC 1,721 ms
131,332 KB
testcase_28 AC 1,748 ms
132,724 KB
testcase_29 AC 1,844 ms
152,076 KB
testcase_30 AC 1,748 ms
132,380 KB
testcase_31 AC 1,714 ms
131,444 KB
testcase_32 AC 1,826 ms
151,384 KB
testcase_33 AC 1,772 ms
131,692 KB
testcase_34 AC 40 ms
53,248 KB
testcase_35 AC 37 ms
53,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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(((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)
0